mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
Added an explanation on how to enable intents if the bot doesn't have them and fails to login
34 lines
945 B
C#
34 lines
945 B
C#
#nullable disable
|
|
namespace NadekoBot;
|
|
|
|
public interface IBotCredentials
|
|
{
|
|
string Token { get; }
|
|
string GoogleApiKey { get; }
|
|
ICollection<ulong> OwnerIds { get; }
|
|
bool UsePrivilegedIntents { get; }
|
|
string RapidApiKey { get; }
|
|
|
|
Creds.DbOptions Db { get; }
|
|
string OsuApiKey { get; }
|
|
int TotalShards { get; }
|
|
Creds.PatreonSettings Patreon { get; }
|
|
string CleverbotApiKey { get; }
|
|
RestartConfig RestartCommand { get; }
|
|
Creds.VotesSettings Votes { get; }
|
|
string BotListToken { get; }
|
|
string RedisOptions { get; }
|
|
string LocationIqApiKey { get; }
|
|
string TimezoneDbApiKey { get; }
|
|
string CoinmarketcapApiKey { get; }
|
|
string TrovoClientId { get; }
|
|
string CoordinatorUrl { get; set; }
|
|
string TwitchClientId { get; set; }
|
|
string TwitchClientSecret { get; set; }
|
|
}
|
|
|
|
public class RestartConfig
|
|
{
|
|
public string Cmd { get; set; }
|
|
public string Args { get; set; }
|
|
} |