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

59 lines
1.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
# from .videochannel import VideochannelCommand
# from .trivia import TriviaCommand
# from .matchmaking import MatchmakingCommand
# from .pause import PauseCommand
# from .play import PlayCommand
# from .playmode import PlaymodeCommand
# from .queue import QueueCommand
# from .skip import SkipCommand
# from .summon import SummonCommand
# from .youtube import YoutubeCommand
# from .soundcloud import SoundcloudCommand
# 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
# from .mp3 import Mp3Command
2019-11-11 08:56:08 +00:00
from .peertube import PeertubeCommand
# 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,
# VideochannelCommand,
# TriviaCommand,
# MatchmakingCommand,
# PauseCommand,
# PlayCommand,
# PlaymodeCommand,
# QueueCommand,
# SkipCommand,
# SummonCommand,
# YoutubeCommand,
# SoundcloudCommand,
# 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,
# Mp3Command,
2019-11-11 08:56:08 +00:00
PeertubeCommand,
]
# Don't change this, it should automatically generate __all__
__all__ = [command.__name__ for command in available_commands]