mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
7 lines
196 B
C#
7 lines
196 B
C#
namespace NadekoBot.Modules.Administration.DangerousCommands;
|
|
|
|
public interface ICleanupService
|
|
{
|
|
Task<KeepResult?> DeleteMissingGuildDataAsync();
|
|
Task<bool> KeepGuild(ulong guildId);
|
|
} |