mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Add rpg pack to init
This commit is contained in:
parent
5e13a679ab
commit
1a86cec0d5
4 changed files with 2 additions and 27 deletions
|
@ -1,7 +1,9 @@
|
||||||
from . import common
|
from . import common
|
||||||
from . import royal
|
from . import royal
|
||||||
|
from . import rpg
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"common",
|
"common",
|
||||||
"royal",
|
"royal",
|
||||||
|
"rpg",
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
# This is a template Pack __init__. You can use this without changing anything in other packages too!
|
|
||||||
|
|
||||||
from .commands import available_commands
|
|
||||||
from .tables import available_tables
|
|
||||||
|
|
||||||
__all__ = ["commands", "tables", "available_commands", "available_tables"]
|
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
# Imports go here!
|
|
||||||
|
|
||||||
|
|
||||||
# Enter the commands of your Pack here!
|
|
||||||
available_commands = [
|
|
||||||
|
|
||||||
]
|
|
||||||
|
|
||||||
# Don't change this, it should automatically generate __all__
|
|
||||||
__all__ = [command.__class__.__qualname__ for command in available_commands]
|
|
|
@ -1,10 +0,0 @@
|
||||||
# Imports go here!
|
|
||||||
|
|
||||||
|
|
||||||
# Enter the tables of your Pack here!
|
|
||||||
available_tables = [
|
|
||||||
|
|
||||||
]
|
|
||||||
|
|
||||||
# Don't change this, it should automatically generate __all__
|
|
||||||
__all__ = [table.__class__.__qualname__ for table in available_tables]
|
|
Loading…
Reference in a new issue