Fixed import error

This commit is contained in:
Romano Bodha 2016-12-23 01:42:05 +01:00
parent ef9d8710f5
commit 5c1ef2c1cf

View File

@ -6,6 +6,7 @@ Sanic has simple class based implementation. You should implement methods(get, p
```python ```python
from sanic import Sanic from sanic import Sanic
from sanic.views import HTTPMethodView from sanic.views import HTTPMethodView
from sanic.response import text
app = Sanic('some_name') app = Sanic('some_name')