Исправлен init для импорта пакета
This commit is contained in:
parent
f2d50ae88b
commit
f0986b6fd6
1 changed files with 4 additions and 4 deletions
|
|
@ -7,14 +7,14 @@
|
||||||
- IM, OM, IncomingMessage, OutgoingMessage: Pydantic модели контракта
|
- IM, OM, IncomingMessage, OutgoingMessage: Pydantic модели контракта
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from agent_api import AgentApi, AgentException
|
from .agent_api import AgentApi, AgentException
|
||||||
from models import IM, OM, IncomingMessage, OutgoingMessage
|
from .models import IM, OM, ClientMessage, ServerMessage
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"AgentApi",
|
"AgentApi",
|
||||||
"AgentException",
|
"AgentException",
|
||||||
"IM",
|
"IM",
|
||||||
"OM",
|
"OM",
|
||||||
"IncomingMessage",
|
"ClientMessage",
|
||||||
"OutgoingMessage",
|
"ServerMessage",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue