24 lines
406 B
Python
24 lines
406 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
jishaku
|
||
|
~~~~~~~
|
||
|
|
||
|
A discord.py extension including useful tools for bot development and debugging.
|
||
|
|
||
|
:copyright: (c) 2019 Devon (Gorialis) R
|
||
|
:license: MIT, see LICENSE for more details.
|
||
|
|
||
|
"""
|
||
|
|
||
|
# pylint: disable=wildcard-import
|
||
|
from jishaku.cog import * # noqa: F401
|
||
|
from jishaku.meta import * # noqa: F401
|
||
|
|
||
|
__all__ = (
|
||
|
'Jishaku',
|
||
|
'JishakuBase',
|
||
|
'jsk',
|
||
|
'setup'
|
||
|
)
|