Split core commands into its own (broken) class.
This commit is contained in:
parent
815cd46be9
commit
37cd7d1924
1 changed files with 915 additions and 911 deletions
|
@ -30,6 +30,10 @@ from decorators import command_args_parser
|
|||
from . structs import Command, POSSIBLE_SHOW
|
||||
|
||||
|
||||
class CommandCore:
|
||||
def __init__(self, core):
|
||||
self.core = core
|
||||
|
||||
@command_args_parser.quoted(0, 1)
|
||||
def command_help(self, args):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue