From 2f26bae3e000b54a679c62f0f7dd695c666f8deb Mon Sep 17 00:00:00 2001 From: Ssekirime Geofrey Date: Mon, 24 Sep 2018 16:22:16 +0300 Subject: [PATCH] fixed package imports in anything.py code sample updated the package imports to reflect the new project structure --- docs/started.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/started.md b/docs/started.md index aa879e1..5c278c3 100644 --- a/docs/started.md +++ b/docs/started.md @@ -14,7 +14,8 @@ advantage of some new Python features. ```py -from vibora import Vibora, JsonResponse +from vibora import Vibora +from vibora.resposes import JsonResponse app = Vibora()