1
0
Fork 0

add module enjo_lib.comm.method, move stuff to there

main
Felix Stupp 3 months ago
parent 08c2a22a43
commit d9fc036931
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -14,7 +14,7 @@ from typing import (
TypeAlias,
)
from ..our_types import (
from ...our_types import (
JSON,
)

@ -3,12 +3,12 @@ from __future__ import annotations
import asyncio
from functools import partial
from .method import (
from .interface import (
MessageHandler,
TransportMethod,
TransmissionSuccess,
)
from ..our_types import JSON
from ...our_types import JSON
class InternalTransport(TransportMethod):

@ -10,7 +10,7 @@ from unittest.mock import (
MagicMock,
)
from enjo_lib.comm.internal import (
from enjo_lib.comm.method.internal import (
InternalExchanger,
InternalTransport,
)
Loading…
Cancel
Save