feat(aurora): added aurora settings guild command
Some checks failed
Actions / Lint Code (Pylint) (pull_request) Failing after 15s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 11s

This commit is contained in:
SeaswimmerTheFsh 2024-01-16 11:50:09 +00:00
parent f97f010dec
commit 45286ded55
Signed by: cswimr
GPG key ID: D74DDDDF420E13DF
3 changed files with 89 additions and 61 deletions

View file

@ -40,6 +40,10 @@ class Mixin(ABC):
async def aurora_settings_overrides(self, ctx: commands.Context) -> None:
raise NotImplementedError()
@abstractmethod
async def aurora_settings_guild(self, ctx: commands.Context) -> None:
raise NotImplementedError()
@abstractmethod
async def aurora_settings_addrole(self, ctx: commands.Context) -> None:
raise NotImplementedError()