Files
nadekobot/src/NadekoBot/Modules/Administration/DangerousCommands/_common/ICleanupService.cs

7 lines
196 B
C#

namespace NadekoBot.Modules.Administration.DangerousCommands;
public interface ICleanupService
{
Task<KeepResult?> DeleteMissingGuildDataAsync();
Task<bool> KeepGuild(ulong guildId);
}