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

137 lines
4.1 KiB
Python
Raw Normal View History

2019-11-11 08:56:08 +00:00
# Imports go here!
2020-07-18 14:24:16 +00:00
from .ahnonlosoio import AhnonlosoioCommand
from .brawlhalla import BrawlhallaCommand
from .cat import CatCommand
2019-11-11 08:56:08 +00:00
from .ciaoruozi import CiaoruoziCommand
from .color import ColorCommand
2019-11-28 16:54:36 +00:00
from .cv import CvCommand
2020-07-18 14:24:16 +00:00
from .cvstats import CvstatsCommand
2019-11-11 08:56:08 +00:00
from .diario import DiarioCommand
from .diarioquote import DiarioquoteCommand
2020-07-18 14:24:16 +00:00
from .diarioshuffle import DiarioshuffleCommand
from .dota import DotaCommand
2019-12-03 14:18:45 +00:00
from .eat import EatCommand
2020-07-18 14:24:16 +00:00
from .elevatormusic import ElevatormusicCommand
from .emojify import EmojifyCommand
from .eval import EvalCommand
from .exec import ExecCommand
2020-07-18 14:24:16 +00:00
from .fortune import FortuneCommand
from .funkwhale import FunkwhaleCommand
from .funkwhalealbum import FunkwhalealbumCommand
2020-03-28 18:38:14 +00:00
from .funkwhaleplaylist import FunkwhaleplaylistCommand
2020-07-18 14:24:16 +00:00
from .givefiorygi import GivefiorygiCommand
from .givetreasure import GivetreasureCommand
from .googlevideo import GooglevideoCommand
from .help import HelpCommand
2020-03-29 19:19:58 +00:00
from .lazyfunkwhale import LazyfunkwhaleCommand
2020-07-18 14:24:16 +00:00
from .lazyfunkwhalealbum import LazyfunkwhalealbumCommand
2020-03-29 19:19:58 +00:00
from .lazyfunkwhaleplaylist import LazyfunkwhaleplaylistCommand
from .lazygooglevideo import LazygooglevideoCommand
from .lazypeertube import LazypeertubeCommand
2020-07-18 14:24:16 +00:00
from .lazyplay import LazyplayCommand
2020-03-29 19:19:58 +00:00
from .lazysoundcloud import LazysoundcloudCommand
from .lazyyahoovideo import LazyyahoovideoCommand
from .lazyyoutube import LazyyoutubeCommand
2020-07-18 14:24:16 +00:00
from .leagueoflegends import LeagueoflegendsCommand
from .magickfiorygi import MagickfiorygiCommand
from .magicktreasure import MagicktreasureCommand
2020-04-08 20:00:57 +00:00
from .matchmaking import MatchmakingCommand
2020-07-18 14:24:16 +00:00
from .pause import PauseCommand
from .peertube import PeertubeCommand
from .peertubeupdates import PeertubeUpdatesCommand
from .ping import PingCommand
from .play import PlayCommand
from .playmode import PlaymodeCommand
from .pmots import PmotsCommand
2020-05-19 16:46:49 +00:00
from .pug import PugCommand
2020-07-18 14:24:16 +00:00
from .queue import QueueCommand
from .rage import RageCommand
from .reminder import ReminderCommand
from .royalpackversion import RoyalpackCommand
from .ship import ShipCommand
from .skip import SkipCommand
from .smecds import SmecdsCommand
from .soundcloud import SoundcloudCommand
from .spell import SpellCommand
from .steammatch import SteammatchCommand
from .steampowered import SteampoweredCommand
from .summon import SummonCommand
2020-05-21 13:16:03 +00:00
from .treasure import TreasureCommand
2020-07-18 14:24:16 +00:00
from .trivia import TriviaCommand
from .userinfo import UserinfoCommand
from .videochannel import VideochannelCommand
from .voicestatus import VoicestatusCommand
from .yahoovideo import YahoovideoCommand
from .youtube import YoutubeCommand
2019-11-11 08:56:08 +00:00
# Enter the commands of your Pack here!
available_commands = [
2020-07-18 14:24:16 +00:00
AhnonlosoioCommand,
BrawlhallaCommand,
CatCommand,
2019-11-11 08:56:08 +00:00
CiaoruoziCommand,
ColorCommand,
2019-11-28 16:54:36 +00:00
CvCommand,
2020-07-18 14:24:16 +00:00
CvstatsCommand,
2019-11-11 08:56:08 +00:00
DiarioCommand,
DiarioquoteCommand,
2020-07-18 14:24:16 +00:00
DiarioshuffleCommand,
DotaCommand,
2019-12-03 14:18:45 +00:00
EatCommand,
2020-07-18 14:24:16 +00:00
ElevatormusicCommand,
EmojifyCommand,
EvalCommand,
ExecCommand,
2020-07-18 14:24:16 +00:00
FortuneCommand,
FunkwhalealbumCommand,
2020-01-06 00:00:51 +00:00
FunkwhaleCommand,
2020-03-28 18:38:14 +00:00
FunkwhaleplaylistCommand,
2020-07-18 14:24:16 +00:00
GivefiorygiCommand,
GivetreasureCommand,
GooglevideoCommand,
HelpCommand,
LazyfunkwhalealbumCommand,
2020-03-29 19:19:58 +00:00
LazyfunkwhaleCommand,
LazyfunkwhaleplaylistCommand,
LazygooglevideoCommand,
LazypeertubeCommand,
2020-07-18 14:24:16 +00:00
LazyplayCommand,
2020-03-29 19:19:58 +00:00
LazysoundcloudCommand,
LazyyahoovideoCommand,
LazyyoutubeCommand,
2020-07-18 14:24:16 +00:00
LeagueoflegendsCommand,
MagickfiorygiCommand,
MagicktreasureCommand,
2020-04-08 20:00:57 +00:00
MatchmakingCommand,
2020-07-18 14:24:16 +00:00
PauseCommand,
PeertubeCommand,
PeertubeUpdatesCommand,
PingCommand,
PlayCommand,
PlaymodeCommand,
PmotsCommand,
2020-05-19 16:46:49 +00:00
PugCommand,
2020-07-18 14:24:16 +00:00
QueueCommand,
RageCommand,
ReminderCommand,
RoyalpackCommand,
ShipCommand,
SkipCommand,
SmecdsCommand,
SoundcloudCommand,
SpellCommand,
SteammatchCommand,
SteampoweredCommand,
SummonCommand,
2020-05-21 13:16:03 +00:00
TreasureCommand,
2020-07-18 14:24:16 +00:00
TriviaCommand,
UserinfoCommand,
VideochannelCommand,
VoicestatusCommand,
YahoovideoCommand,
YoutubeCommand,
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]