Add Bot class
- Use rewrite-2 callbacks modified for async - Utility function for running singular controller - Update TestBot to work with new system
This commit is contained in:
parent
b8bb75a897
commit
053573e3cb
6 changed files with 227 additions and 73 deletions
|
|
@ -5,9 +5,10 @@ logging.basicConfig(level=logging.INFO)
|
|||
logger = logging.getLogger(__name__)
|
||||
logger.setLevel(logging.DEBUG)
|
||||
|
||||
from .bot import *
|
||||
from .connection import *
|
||||
from .room import *
|
||||
from .controller import *
|
||||
from .room import *
|
||||
from .utils import *
|
||||
|
||||
__all__ = connection.__all__ + room.__all__ + controller.__all__ + utils.__all__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue