52 lines
1.2 KiB
Python
52 lines
1.2 KiB
Python
from .anniv import Anniv
|
|
from .bad_command import BadCommand
|
|
from .cancel_previous_input import CancelPreviousInput
|
|
from .collective_subject import CollectiveSubject
|
|
from .comment import Comment
|
|
from .chrono import Chrono
|
|
from .current import Current
|
|
from .date import Date
|
|
from .default import Default
|
|
from .finish_review import FinishReview
|
|
from .hello import Hello
|
|
from .help import Help
|
|
from .individual_subject import IndividualSubject
|
|
from .input_review import InputReview
|
|
from .license import License
|
|
from .listen_alexandrie import ListenAlexandrie
|
|
from .missing import Missing
|
|
from .record import Record
|
|
from .start_review import StartReview
|
|
from .stats import Stats
|
|
from .status import Status
|
|
from .stop_review import StopReview
|
|
from .thanks import Thanks
|
|
from .version import Version
|
|
|
|
hooks = (
|
|
ListenAlexandrie(),
|
|
CancelPreviousInput(),
|
|
Chrono(),
|
|
CollectiveSubject(),
|
|
Comment(),
|
|
Current(),
|
|
FinishReview(),
|
|
Help(),
|
|
IndividualSubject(),
|
|
Missing(),
|
|
Record(),
|
|
StartReview(),
|
|
StopReview(),
|
|
Stats(),
|
|
Status(),
|
|
Anniv(),
|
|
Date(),
|
|
Hello(),
|
|
License(),
|
|
Thanks(),
|
|
Version(),
|
|
BadCommand(),
|
|
InputReview(),
|
|
Default(),
|
|
)
|