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-11-28 01:30:40 +00:00
|
|
|
# from .trivia import TriviaCommand
|
|
|
|
# from .matchmaking import MatchmakingCommand
|
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-11-28 01:30:40 +00:00
|
|
|
# from .playmode import PlaymodeCommand
|
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
|
2019-12-02 20:25:56 +00:00
|
|
|
from .youtube import YoutubeCommand
|
|
|
|
from .soundcloud import SoundcloudCommand
|
2019-11-28 01:30:40 +00:00
|
|
|
# from .zawarudo import ZawarudoCommand
|
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
|
2019-11-28 01:30:40 +00:00
|
|
|
# from .mp3 import Mp3Command
|
2019-11-11 08:56:08 +00:00
|
|
|
from .peertube import PeertubeCommand
|
2019-12-02 20:25:56 +00:00
|
|
|
from .googlevideo import GooglevideoCommand
|
|
|
|
from .yahoovideo import YahoovideoCommand
|
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-11-28 01:30:40 +00:00
|
|
|
# TriviaCommand,
|
|
|
|
# MatchmakingCommand,
|
2019-12-03 00:57:21 +00:00
|
|
|
PauseCommand,
|
2019-12-01 22:53:47 +00:00
|
|
|
PlayCommand,
|
2019-11-28 01:30:40 +00:00
|
|
|
# PlaymodeCommand,
|
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,
|
2019-12-02 20:25:56 +00:00
|
|
|
YoutubeCommand,
|
|
|
|
SoundcloudCommand,
|
2019-11-28 01:30:40 +00:00
|
|
|
# ZawarudoCommand,
|
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,
|
2019-11-28 01:30:40 +00:00
|
|
|
# Mp3Command,
|
2019-11-11 08:56:08 +00:00
|
|
|
PeertubeCommand,
|
2019-12-02 20:25:56 +00:00
|
|
|
GooglevideoCommand,
|
|
|
|
YahoovideoCommand,
|
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]
|