using Stream;
using Stream.Models;
class Program
{
static async Task Main(string[] args)
{
string apiKey = "";
string secret = "";
// Create client with default timeout (6000ms)
var client = new StreamClient(apiKey, secret);
// Or create client with custom timeout (3 seconds)
var clientWithTimeout = new StreamClient(apiKey, secret, new StreamClientOptions
{
Timeout = TimeSpan.FromSeconds(3)
});
// Get the feeds client
var feedsClient = client.Feeds;
// Your feeds operations here...
}
}