yaboli/yaboli/__init__.py
2018-07-26 19:54:44 +00:00

27 lines
606 B
Python

# ---------- BEGIN DEV SECTION ----------
import asyncio
import logging
# asyncio debugging
asyncio.get_event_loop().set_debug(True) # uncomment for asycio debugging mode
logging.getLogger("asyncio").setLevel(logging.DEBUG)
# yaboli logger level
logging.getLogger(__name__).setLevel(logging.DEBUG)
# ----------- END DEV SECTION -----------
from .bot import *
from .cookiejar import *
from .connection import *
from .exceptions import *
from .room import *
from .utils import *
__all__ = (
bot.__all__ +
connection.__all__ +
cookiejar.__all__ +
exceptions.__all__ +
room.__all__ +
utils.__all__
)