LibAC-dart/lib/discord/networking/endpoints.dart

11 lines
397 B
Dart

/// Contains currently supported endpoints and URLs.
class DiscordEndpoints {
/// Currently this is set to 10
static const APIVersion = 10;
/// This is the current base URL of all discord API calls per reference.
static const BaseURL = "https://discord.com/api/v${APIVersion}";
static const ME = "/@me";
static const Applications = "/applications";
static const Users = "/users";
}