13 lines
420 B
C#
13 lines
420 B
C#
EmojiCSharp.EmojiManager.Init();
|
|
LibVLCSharp.Shared.Core.Initialize();
|
|
|
|
_ = new TTSMe.Bot(
|
|
clientId: Environment.GetEnvironmentVariable("CLIENT_ID")!,
|
|
credentials: new(
|
|
twitchUsername: Environment.GetEnvironmentVariable("USER_CHANNEL")!,
|
|
twitchOAuth: Environment.GetEnvironmentVariable("USER_TOKEN")!
|
|
),
|
|
verbose: TTSMe.TtsMeCommand.VERBOSE
|
|
);
|
|
Console.WriteLine("Press any key to exit...");
|
|
Console.ReadKey(); |