.NET library for building applications that interact with fluxer
See Example.cs for a simple starting point
Start with the Fluxify.Bot package.
var bot = new Bot("!", new FluxerConfig())
bot.Commands.Command("ping", () => Console.WriteLine("pong!"));
await bot.RunAsync(new BotTokenCredentials("..."));Using FluxerConfig provide a ILoggerFactory.
Example with Microsoft.Extensions.Logging.Console:
var loggerFactory = LoggerFactory.Create(builder => builder.AddConsole());
var bot = new Bot("!", new FluxerConfig(loggerFactory));
...Example with Microsoft.Extensions.DependencyInjection:
TODO