Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ __pycache__/
*.py[cod]
*$py.class

# vscode environment
.vscode/

# bat extension
*.bat

Expand Down
42 changes: 28 additions & 14 deletions PyDiscoBot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,37 @@
"""PyDiscoBot - a bot by irox
"""
from . import (
commands,
tasks,
types,
channels,
const,
frame,
log,
test_pydiscobot
)


from .bot import Bot
from .types import BotNotLoaded, EmbedField, IllegalChannel, InsufficientPrivilege
from .types import ReportableError, Pagination, InteractionPagination
from .services import const, cmds
from . import embed_frames
from .cog import Cog
from .task import Task
from .types import EmbedField, InteractionPagination

__version__ = "1.1.3"
__version__ = "1.1.4"

__all__ = (
"Bot",
'ReportableError',
'IllegalChannel',
'InsufficientPrivilege',
'BotNotLoaded',
"Pagination",
"InteractionPagination",
'commands',
'tasks',
'types',
'channels',
'const',
'cmds',
'embed_frames',
'frame',
'log',
'task',
'test_pydiscobot',
'Bot',
'Cog',
'EmbedField',
'InteractionPagination',
'Task',
)
Loading