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:
Joscha 2017-09-04 19:56:17 +00:00
parent b8bb75a897
commit 053573e3cb
6 changed files with 227 additions and 73 deletions

View file

@ -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__