Total Complexity | 0 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | """Cogs |
||
2 | --- |
||
3 | All cogs responsible for commands. |
||
4 | |||
5 | * :ref:`AdminCog` commands: list-admin, am-admin, add-admin. |
||
6 | |||
7 | * :ref:`EventCog` has an event for members joining. |
||
8 | |||
9 | * :ref:`HealthCog` has command check-heath which checks the make sure that role names match in |
||
10 | the tables.Also updates the table if role names change or are removed. |
||
11 | |||
12 | * :ref:`MiscCog` commands: ping, contact-admin. |
||
13 | |||
14 | * :ref:`RankCog` commands: add-rank. |
||
15 | |||
16 | * :ref:`RegionsCog` commands: add-region, list-region. |
||
17 | |||
18 | * :ref:`SchoolCog` commands: add-school, join-school, list-schools. |
||
19 | |||
20 | * :ref:`SearchCog` commands: validate-school, state-search, import-school. |
||
21 | |||
22 | * :ref:`TaskCog` task: report_errors |
||
23 | """ |
||
24 | from .admin import AdminCog |
||
25 | from .errors import ErrorsCog |
||
26 | from .events import EventsCog |
||
27 | from .health import HealthCog |
||
28 | from .misc import MiscCog |
||
29 | from .rank import RankCog |
||
30 | from .regions import RegionCog |
||
31 | from .schools import SchoolCog |
||
32 | from .search import SearchCog |
||
33 | from .tasks import TaskCog |
||
34 | |||
35 | __all__ = [ |
||
36 | "AdminCog", |
||
37 | "ErrorsCog", |
||
38 | "EventsCog", |
||
39 | "HealthCog", |
||
40 | "MiscCog", |
||
41 | "RankCog", |
||
42 | "RegionCog", |
||
43 | "SchoolCog", |
||
44 | "SearchCog", |
||
45 | "TaskCog", |
||
46 | ] |
||
47 |