Group all subcommands

This commit is contained in:
TSR Berry 2023-08-24 23:56:45 +02:00
parent cef935c5a7
commit a0c87aaf6b
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2

View 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