mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
Fix missing commands
This commit is contained in:
parent
330217bdb2
commit
947193fd77
3 changed files with 47 additions and 26 deletions
|
@ -3,28 +3,40 @@
|
|||
These probably won't suit your needs, as they are tailored for the bots of the Royal Games gaming community, but they
|
||||
may be useful to develop new ones."""
|
||||
|
||||
from .ping import PingCommand
|
||||
from .ciaoruozi import CiaoruoziCommand
|
||||
from .color import ColorCommand
|
||||
from .cv import CvCommand
|
||||
from .diario import DiarioCommand
|
||||
from .mp3 import Mp3Command
|
||||
from .summon import SummonCommand
|
||||
from .pause import PauseCommand
|
||||
from .ping import PingCommand
|
||||
from .play import PlayCommand
|
||||
from .playmode import PlaymodeCommand
|
||||
from .queue import QueueCommand
|
||||
from .rage import RageCommand
|
||||
from .reminder import ReminderCommand
|
||||
from .ship import ShipCommand
|
||||
from .skip import SkipCommand
|
||||
from .smecds import SmecdsCommand
|
||||
from .summon import SummonCommand
|
||||
from .videochannel import VideochannelCommand
|
||||
|
||||
__all__ = ["PingCommand",
|
||||
"CiaoruoziCommand",
|
||||
"ColorCommand",
|
||||
"CvCommand",
|
||||
"DiarioCommand",
|
||||
"Mp3Command",
|
||||
"SummonCommand",
|
||||
"PauseCommand",
|
||||
"PlayCommand",
|
||||
"PlaymodeCommand",
|
||||
"QueueCommand",
|
||||
"ReminderCommand"]
|
||||
__all__ = [
|
||||
"CiaoruoziCommand",
|
||||
"ColorCommand",
|
||||
"CvCommand",
|
||||
"DiarioCommand",
|
||||
"Mp3Command",
|
||||
"PauseCommand",
|
||||
"PingCommand",
|
||||
"PlayCommand",
|
||||
"PlaymodeCommand",
|
||||
"QueueCommand",
|
||||
"RageCommand",
|
||||
"ReminderCommand",
|
||||
"ShipCommand",
|
||||
"SkipCommand",
|
||||
"SmecdsCommand",
|
||||
"SummonCommand",
|
||||
"VideochannelCommand"
|
||||
]
|
||||
|
|
|
@ -16,18 +16,25 @@ stream_handler = logging.StreamHandler()
|
|||
stream_handler.formatter = logging.Formatter("{asctime}\t{name}\t{levelname}\t{message}", style="{")
|
||||
log.addHandler(stream_handler)
|
||||
|
||||
commands = [PingCommand,
|
||||
ColorCommand,
|
||||
CiaoruoziCommand,
|
||||
CvCommand,
|
||||
DiarioCommand,
|
||||
Mp3Command,
|
||||
SummonCommand,
|
||||
PauseCommand,
|
||||
PlayCommand,
|
||||
PlaymodeCommand,
|
||||
QueueCommand,
|
||||
ReminderCommand]
|
||||
commands = [
|
||||
CiaoruoziCommand,
|
||||
ColorCommand,
|
||||
CvCommand,
|
||||
DiarioCommand,
|
||||
Mp3Command,
|
||||
PauseCommand,
|
||||
PingCommand,
|
||||
PlayCommand,
|
||||
PlaymodeCommand,
|
||||
QueueCommand,
|
||||
RageCommand,
|
||||
ReminderCommand,
|
||||
ShipCommand,
|
||||
SkipCommand,
|
||||
SmecdsCommand,
|
||||
SummonCommand,
|
||||
VideochannelCommand
|
||||
]
|
||||
|
||||
# noinspection PyUnreachableCode
|
||||
if __debug__:
|
||||
|
|
|
@ -1,2 +1,4 @@
|
|||
|
||||
del /f /q /s dist\*.*
|
||||
python setup.py sdist bdist_wheel
|
||||
twine upload dist/*
|
||||
|
|
Loading…
Reference in a new issue