1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/royalpack/commands/__init__.py

73 lines
2 KiB
Python
Raw Normal View History

2019-11-11 09:56:08 +01:00
# Imports go here!
from .ciaoruozi import CiaoruoziCommand
from .color import ColorCommand
2019-11-28 17:54:36 +01:00
from .cv import CvCommand
2019-11-11 09:56:08 +01:00
from .diario import DiarioCommand
2019-11-29 15:55:52 +01:00
from .rage import RageCommand
from .reminder import ReminderCommand
from .ship import ShipCommand
from .smecds import SmecdsCommand
2019-11-29 20:05:09 +01:00
from .videochannel import VideochannelCommand
# from .trivia import TriviaCommand
# from .matchmaking import MatchmakingCommand
2019-12-03 01:57:21 +01:00
from .pause import PauseCommand
2019-12-01 23:53:47 +01:00
from .play import PlayCommand
# from .playmode import PlaymodeCommand
2019-12-03 01:57:21 +01:00
from .queue import QueueCommand
2019-12-02 20:40:25 +01:00
from .skip import SkipCommand
2019-11-30 14:49:23 +01:00
from .summon import SummonCommand
from .youtube import YoutubeCommand
from .soundcloud import SoundcloudCommand
# from .zawarudo import ZawarudoCommand
2019-11-11 09:56:08 +01:00
from .emojify import EmojifyCommand
2019-11-29 15:55:52 +01:00
from .leagueoflegends import LeagueoflegendsCommand
2019-11-11 09:56:08 +01:00
from .diarioquote import DiarioquoteCommand
# from .mp3 import Mp3Command
2019-11-11 09:56:08 +01:00
from .peertube import PeertubeCommand
from .googlevideo import GooglevideoCommand
from .yahoovideo import YahoovideoCommand
2019-12-03 13:53:08 +01:00
from .userinfo import UserinfoCommand
2019-12-03 14:57:08 +01:00
from .spell import SpellCommand
2019-12-03 15:18:45 +01:00
from .ahnonlosoio import AhnonlosoioCommand
from .eat import EatCommand
2019-12-03 19:07:24 +01:00
from .pmots import PmotsCommand
2019-11-11 09:56:08 +01:00
# Enter the commands of your Pack here!
available_commands = [
CiaoruoziCommand,
ColorCommand,
2019-11-28 17:54:36 +01:00
CvCommand,
2019-11-11 09:56:08 +01:00
DiarioCommand,
2019-11-29 15:55:52 +01:00
RageCommand,
ReminderCommand,
ShipCommand,
SmecdsCommand,
2019-11-29 20:05:09 +01:00
VideochannelCommand,
# TriviaCommand,
# MatchmakingCommand,
2019-12-03 01:57:21 +01:00
PauseCommand,
2019-12-01 23:53:47 +01:00
PlayCommand,
# PlaymodeCommand,
2019-12-03 01:57:21 +01:00
QueueCommand,
2019-12-02 20:40:25 +01:00
SkipCommand,
2019-11-30 14:49:23 +01:00
SummonCommand,
YoutubeCommand,
SoundcloudCommand,
# ZawarudoCommand,
2019-11-11 09:56:08 +01:00
EmojifyCommand,
2019-11-29 15:55:52 +01:00
LeagueoflegendsCommand,
2019-11-11 09:56:08 +01:00
DiarioquoteCommand,
# Mp3Command,
2019-11-11 09:56:08 +01:00
PeertubeCommand,
GooglevideoCommand,
YahoovideoCommand,
2019-12-03 13:53:08 +01:00
UserinfoCommand,
2019-12-03 14:57:08 +01:00
SpellCommand,
2019-12-03 15:18:45 +01:00
AhnonlosoioCommand,
EatCommand,
2019-12-03 19:07:24 +01:00
PmotsCommand,
2019-11-11 09:56:08 +01:00
]
# Don't change this, it should automatically generate __all__
__all__ = [command.__name__ for command in available_commands]