Edit on GitHub

tickets_plus.ext

This module contains the extensions that are loaded by the bot.

Those are various non-cog extensions used throughout the bot. Currently, this module contains the following extensions: - tickets_plus.ext.checks - tickets_plus.ext.exceptions - tickets_plus.ext.views

Typical usage example:
from tickets_plus.ext import checks
from tickets_plus.ext import exceptions
from tickets_plus.ext import views
...
 1"""This module contains the extensions that are loaded by the bot.
 2
 3Those are various non-cog extensions used throughout the bot.
 4Currently, this module contains the following extensions:
 5    - tickets_plus.ext.checks
 6    - tickets_plus.ext.exceptions
 7    - tickets_plus.ext.views
 8
 9Typical usage example:
10    ```py
11    from tickets_plus.ext import checks
12    from tickets_plus.ext import exceptions
13    from tickets_plus.ext import views
14    ...
15    ```
16"""
17# License: EPL-2.0
18# SPDX-License-Identifier: EPL-2.0
19# Copyright (c) 2021-present The Tickets+ Contributors
20# This Source Code may also be made available under the following
21# Secondary Licenses when the conditions for such availability set forth
22# in the Eclipse Public License, v. 2.0 are satisfied: GPL-3.0-only OR
23# If later approved by the Initial Contributor, GPL-3.0-or-later.