Start to add in some networking stuff

This commit is contained in:
zontreck 2024-07-10 02:46:33 -07:00
parent b820274f95
commit 15d80c1ab3
5 changed files with 93 additions and 7 deletions

View file

@ -0,0 +1,6 @@
class DiscordEndpoints {
static const APIVersion = 10;
static const BaseURL = "https://discord.com/api/v${APIVersion}";
static const ME = "/@me";
static const Applications = "/applications";
}