Rename `.client` -> `.api`
parent
85c2f6e79f
commit
bf7397f031
|
@ -30,7 +30,7 @@ Sub-modules within break into the core functionalities:
|
||||||
tracking..
|
tracking..
|
||||||
|
|
||||||
"""
|
"""
|
||||||
from .client import (
|
from .api import (
|
||||||
get_client,
|
get_client,
|
||||||
)
|
)
|
||||||
from .feed import (
|
from .feed import (
|
||||||
|
@ -51,7 +51,7 @@ __all__ = [
|
||||||
|
|
||||||
# tractor RPC enable arg
|
# tractor RPC enable arg
|
||||||
__enable_modules__: list[str] = [
|
__enable_modules__: list[str] = [
|
||||||
'client',
|
'api',
|
||||||
'feed',
|
'feed',
|
||||||
'broker',
|
'broker',
|
||||||
]
|
]
|
||||||
|
|
|
@ -56,7 +56,7 @@ from piker.clearing._messages import (
|
||||||
BrokerdFill,
|
BrokerdFill,
|
||||||
BrokerdError,
|
BrokerdError,
|
||||||
)
|
)
|
||||||
from .client import (
|
from .api import (
|
||||||
_adhoc_futes_set,
|
_adhoc_futes_set,
|
||||||
log,
|
log,
|
||||||
get_config,
|
get_config,
|
||||||
|
|
|
@ -40,7 +40,7 @@ from trio_typing import TaskStatus
|
||||||
|
|
||||||
from piker.data._sharedmem import ShmArray
|
from piker.data._sharedmem import ShmArray
|
||||||
from .._util import SymbolNotFound, NoData
|
from .._util import SymbolNotFound, NoData
|
||||||
from .client import (
|
from .api import (
|
||||||
_adhoc_futes_set,
|
_adhoc_futes_set,
|
||||||
log,
|
log,
|
||||||
load_aio_clients,
|
load_aio_clients,
|
||||||
|
|
Loading…
Reference in New Issue