using System; using franz; namespace PlaceholderVO { internal class Program { public static Telefranz telefranz; static async Task Main(string[] args) { Telefranz.Configure(name: "balaam placeholder VO", bootstrap_servers: "alloces:9092", commands: ["speak"]); telefranz = Telefranz.Instance; await Task.Delay(1000); telefranz.ProduceMessage(new gray_messages.global.sound_off()); Console.WriteLine("Hello World!"); await Task.Delay(-1); } } }