1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/royalpack/commands/__init__.py

119 lines
3.6 KiB
Python
Raw Normal View History

2019-11-11 08:56:08 +00:00
# Imports go here!
from .ciaoruozi import CiaoruoziCommand
from .color import ColorCommand
2019-11-28 16:54:36 +00:00
from .cv import CvCommand
2019-11-11 08:56:08 +00:00
from .diario import DiarioCommand
2019-11-29 14:55:52 +00:00
from .rage import RageCommand
from .reminder import ReminderCommand
from .ship import ShipCommand
from .smecds import SmecdsCommand
2019-11-29 19:05:09 +00:00
from .videochannel import VideochannelCommand
2019-12-03 00:57:21 +00:00
from .pause import PauseCommand
2019-12-01 22:53:47 +00:00
from .play import PlayCommand
2019-12-03 00:57:21 +00:00
from .queue import QueueCommand
2019-12-02 19:40:25 +00:00
from .skip import SkipCommand
2019-11-30 13:49:23 +00:00
from .summon import SummonCommand
from .youtube import YoutubeCommand
from .soundcloud import SoundcloudCommand
2019-11-11 08:56:08 +00:00
from .emojify import EmojifyCommand
2019-11-29 14:55:52 +00:00
from .leagueoflegends import LeagueoflegendsCommand
2019-11-11 08:56:08 +00:00
from .diarioquote import DiarioquoteCommand
from .peertubeupdates import PeertubeUpdatesCommand
from .googlevideo import GooglevideoCommand
from .yahoovideo import YahoovideoCommand
2019-12-03 12:53:08 +00:00
from .userinfo import UserinfoCommand
2019-12-03 13:57:08 +00:00
from .spell import SpellCommand
2019-12-03 14:18:45 +00:00
from .ahnonlosoio import AhnonlosoioCommand
from .eat import EatCommand
2019-12-03 18:07:24 +00:00
from .pmots import PmotsCommand
2019-12-17 20:02:02 +00:00
from .peertube import PeertubeCommand
2020-01-05 23:44:02 +00:00
from .funkwhale import FunkwhaleCommand
from .eval import EvalCommand
from .exec import ExecCommand
from .trivia import TriviaCommand
2020-01-20 21:47:45 +00:00
from .steampowered import SteampoweredCommand
2020-01-20 23:54:55 +00:00
from .steammatch import SteammatchCommand
2020-01-24 00:07:11 +00:00
from .dota import DotaCommand
2020-01-31 00:47:44 +00:00
from .magickfiorygi import MagickfiorygiCommand
2020-03-19 15:26:11 +00:00
from .brawlhalla import BrawlhallaCommand
from .diarioshuffle import DiarioshuffleCommand
2020-03-28 18:38:14 +00:00
from .funkwhaleplaylist import FunkwhaleplaylistCommand
from .voicestatus import VoicestatusCommand
2020-03-28 23:14:55 +00:00
from .playmode import PlaymodeCommand
2020-03-29 19:19:58 +00:00
from .lazyplay import LazyplayCommand
from .lazyfunkwhale import LazyfunkwhaleCommand
from .lazyfunkwhaleplaylist import LazyfunkwhaleplaylistCommand
from .lazygooglevideo import LazygooglevideoCommand
from .lazypeertube import LazypeertubeCommand
from .lazysoundcloud import LazysoundcloudCommand
from .lazyyahoovideo import LazyyahoovideoCommand
from .lazyyoutube import LazyyoutubeCommand
from .funkwhalealbum import FunkwhalealbumCommand
from .lazyfunkwhalealbum import LazyfunkwhalealbumCommand
2020-04-08 20:00:57 +00:00
from .matchmaking import MatchmakingCommand
2020-04-27 01:12:01 +00:00
from .cvstats import CvstatsCommand
2020-04-29 17:29:07 +00:00
from .elevatormusic import ElevatormusicCommand
2020-04-29 21:54:01 +00:00
from .royalpack import RoyalpackCommand
2019-11-11 08:56:08 +00:00
# Enter the commands of your Pack here!
available_commands = [
CiaoruoziCommand,
ColorCommand,
2019-11-28 16:54:36 +00:00
CvCommand,
2019-11-11 08:56:08 +00:00
DiarioCommand,
2019-11-29 14:55:52 +00:00
RageCommand,
ReminderCommand,
ShipCommand,
SmecdsCommand,
2019-11-29 19:05:09 +00:00
VideochannelCommand,
2019-12-03 00:57:21 +00:00
PauseCommand,
2019-12-01 22:53:47 +00:00
PlayCommand,
2019-12-03 00:57:21 +00:00
QueueCommand,
2019-12-02 19:40:25 +00:00
SkipCommand,
2019-11-30 13:49:23 +00:00
SummonCommand,
YoutubeCommand,
SoundcloudCommand,
2019-11-11 08:56:08 +00:00
EmojifyCommand,
2019-11-29 14:55:52 +00:00
LeagueoflegendsCommand,
2019-11-11 08:56:08 +00:00
DiarioquoteCommand,
PeertubeUpdatesCommand,
GooglevideoCommand,
YahoovideoCommand,
2019-12-03 12:53:08 +00:00
UserinfoCommand,
2019-12-03 13:57:08 +00:00
SpellCommand,
2019-12-03 14:18:45 +00:00
AhnonlosoioCommand,
EatCommand,
2019-12-03 18:07:24 +00:00
PmotsCommand,
2019-12-17 20:02:02 +00:00
PeertubeCommand,
EvalCommand,
ExecCommand,
2020-01-06 00:00:51 +00:00
FunkwhaleCommand,
TriviaCommand,
2020-01-20 21:47:45 +00:00
SteampoweredCommand,
2020-01-24 00:07:11 +00:00
SteammatchCommand,
DotaCommand,
2020-01-31 00:47:44 +00:00
MagickfiorygiCommand,
2020-03-19 15:26:11 +00:00
BrawlhallaCommand,
DiarioshuffleCommand,
2020-03-28 18:38:14 +00:00
FunkwhaleplaylistCommand,
VoicestatusCommand,
2020-03-28 23:14:55 +00:00
PlaymodeCommand,
2020-03-29 19:19:58 +00:00
LazyplayCommand,
LazyfunkwhaleCommand,
LazyfunkwhaleplaylistCommand,
LazygooglevideoCommand,
LazypeertubeCommand,
LazysoundcloudCommand,
LazyyahoovideoCommand,
LazyyoutubeCommand,
FunkwhalealbumCommand,
LazyfunkwhalealbumCommand,
2020-04-08 20:00:57 +00:00
MatchmakingCommand,
2020-04-29 17:29:07 +00:00
CvstatsCommand,
ElevatormusicCommand,
2020-04-29 21:54:01 +00:00
RoyalpackCommand,
2019-11-11 08:56:08 +00:00
]
# Don't change this, it should automatically generate __all__
__all__ = [command.__name__ for command in available_commands]