security.py and models.py swap places in modules

This commit is contained in:
havlong
2022-12-16 17:55:37 +03:00
parent 537c7ed714
commit 49faf73208
5 changed files with 9 additions and 9 deletions

View File

@@ -12,11 +12,11 @@ After importing an app such as `main.py`:
```python
from typing import List
from src.vue_apps_py.security import SecurityHelper
from src.vue_apps_py.server import VueApp, name_intents
from src.vue_apps_py.client import ClientAPI
from src.vue_apps_py.server_utils.intents import Intent, InlineQuery
from src.vue_apps_py.server_utils.models import AutoModel, SuggestionsModel
from vue_apps_py.client import ClientAPI
from vue_apps_py.models import AutoModel, SuggestionsModel
from vue_apps_py.server import VueApp, name_intents
from vue_apps_py.server_utils.intents import Intent, InlineQuery
from vue_apps_py.server_utils.security import SecurityHelper
def autocomplete_handler(query_model: AutoModel) -> SuggestionsModel: