2017-07-20 03:10:39 +00:00
|
|
|
|
using NadekoBot.Common;
|
2017-10-13 04:14:54 +00:00
|
|
|
|
using NadekoBot.Core.Services.Database.Models;
|
2017-07-20 03:10:39 +00:00
|
|
|
|
|
2017-10-13 04:14:54 +00:00
|
|
|
|
namespace NadekoBot.Core.Services
|
2017-07-20 03:10:39 +00:00
|
|
|
|
{
|
2017-07-25 16:31:30 +00:00
|
|
|
|
public interface IBotConfigProvider
|
2017-07-20 03:10:39 +00:00
|
|
|
|
{
|
|
|
|
|
BotConfig BotConfig { get; }
|
|
|
|
|
void Reload();
|
|
|
|
|
bool Edit(BotConfigEditType type, string newValue);
|
|
|
|
|
}
|
|
|
|
|
}
|