mirror of
https://github.com/Ryujinx/Ryujinx-Mako.git
synced 2025-08-15 21:51:08 +00:00
Group all subcommands
This commit is contained in:
parent
cef935c5a7
commit
a0c87aaf6b
12
ryujinx_mako/commands/__init__.py
Normal file
12
ryujinx_mako/commands/__init__.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from typing import Type
|
||||
|
||||
from ryujinx_mako.commands._subcommand import Subcommand
|
||||
from ryujinx_mako.commands.setup_git import SetupGit
|
||||
from ryujinx_mako.commands.update_reviewers import UpdateReviewers
|
||||
|
||||
SUBCOMMANDS: list[Type[Subcommand]] = [
|
||||
SetupGit,
|
||||
UpdateReviewers,
|
||||
]
|
||||
|
||||
__all__ = SUBCOMMANDS
|
Loading…
Reference in a new issue