chore: begin porting code from playground

This commit is contained in:
Stevan Freeborn
2025-05-07 23:54:46 -05:00
parent 30dbba37be
commit 3f4ab165ce
19 changed files with 230 additions and 24 deletions
@@ -0,0 +1,8 @@
namespace StevesBot.Worker.Discord;
internal class DiscordClientOptions
{
public string ApiUrl { get; init; } = string.Empty;
public string AppToken { get; init; } = string.Empty;
public int Intents { get; init; }
}