Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created August 6, 2020 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/370d76ea122535068d295270f6155c40 to your computer and use it in GitHub Desktop.
Save dcomartin/370d76ea122535068d295270f6155c40 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
private static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureServices((context, collection) =>
{
collection.AddHostedService<KafkaConsumerHostedService>();
collection.AddHostedService<KafkaProducerHostedService>();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment