script-splitter/Program.cs
adam d2c2da6808 telefranzable
make me a template
2024-07-11 02:37:27 -04:00

25 lines
608 B
C#

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);
}
}
}