sanic/sanic/__init__.py

8 lines
127 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-18 05:20:16 +01:00
__version__ = "19.03.0"
2016-10-25 09:49:43 +01:00
2018-10-14 01:55:33 +01:00
__all__ = ["Sanic", "Blueprint"]