using GetStream;
using GetStream.Models;
class Program
{
static async Task Main(string[] args)
{
string apiKey = "";
string secret = "";
// Create client using ClientBuilder
var builder = new ClientBuilder()
.ApiKey(apiKey)
.ApiSecret(secret);
// Build the main client
var client = builder.Build();
// Build the feeds client
var feedsClient = builder.BuildFeedsClient();
// Your feeds operations here...
}
}