security.py and models.py swap places in modules
This commit is contained in:
@@ -3,9 +3,9 @@ from typing import Dict, List
|
||||
from fastapi import FastAPI, Request, HTTPException, status
|
||||
|
||||
from .client import ClientAPI
|
||||
from .security import SecurityHelper
|
||||
from .server_utils.intents import Intent, InlineQuery, PageMentions, Interactions, PageApp
|
||||
from .server_utils.models import PongModel, SuggestionsModel, AutoModel, MentionModel, InteractionModel, PageModel
|
||||
from .models import AutoModel, InteractionModel, MentionModel, PageModel, PongModel, SuggestionsModel
|
||||
from .server_utils.intents import Intent, PageApp, InlineQuery, PageMentions, Interactions
|
||||
from .server_utils.security import SecurityHelper
|
||||
|
||||
|
||||
def name_intents(intents: List[Intent]) -> Dict[str, Intent]:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
from typing import Callable
|
||||
|
||||
from .models import AutoModel, SuggestionsModel, MentionModel, InteractionModel, PageModel
|
||||
from ..models import AutoModel, InteractionModel, MentionModel, PageModel, SuggestionsModel
|
||||
|
||||
|
||||
class Intent:
|
||||
|
||||
Reference in New Issue
Block a user