mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-11-03 00:04:28 -05:00
37 lines
1006 B
C#
37 lines
1006 B
C#
using System.Collections.Generic;
|
|
using Discord;
|
|
using System.Collections.Immutable;
|
|
using System.Linq;
|
|
using NadekoBot.Common;
|
|
|
|
namespace NadekoBot
|
|
{
|
|
public interface IBotCredentials
|
|
{
|
|
string Token { get; }
|
|
string GoogleApiKey { get; }
|
|
ICollection<ulong> OwnerIds { 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 CoordinatorUrl { get; set; }
|
|
}
|
|
|
|
public class RestartConfig
|
|
{
|
|
public string Cmd { get; set; }
|
|
public string Args { get; set; }
|
|
}
|
|
}
|