diff --git a/aurora/abc.py b/aurora/abc.py index bd16d9b..4e1846b 100644 --- a/aurora/abc.py +++ b/aurora/abc.py @@ -33,7 +33,19 @@ class Mixin(ABC): raise NotImplementedError() @abstractmethod - async def aurora_config(self, ctx: commands.Context) -> None: + async def aurora_settings(self, ctx: commands.Context) -> None: + raise NotImplementedError() + + @abstractmethod + async def aurora_settings_core(self, ctx: commands.Context) -> None: + raise NotImplementedError() + + @abstractmethod + async def aurora_settings_addrole(self, ctx: commands.Context) -> None: + raise NotImplementedError() + + @abstractmethod + async def aurora_settings_immunity(self, ctx: commands.Context) -> None: raise NotImplementedError() @abstractmethod