sanic/sanic/__init__.py

7 lines
124 B
Python
Raw Normal View History

2017-02-16 02:54:00 +00:00
from sanic.app import Sanic
from sanic.blueprints import Blueprint
2016-10-16 10:21:24 +01:00
2018-10-14 01:55:33 +01:00
__version__ = "0.8.3"
2016-10-25 09:49:43 +01:00
2018-10-14 01:55:33 +01:00
__all__ = ["Sanic", "Blueprint"]