Rename `.client` -> `.api`

ib_subpkg
Tyler Goodlet 2022-06-06 15:56:12 -04:00
parent 85c2f6e79f
commit bf7397f031
4 changed files with 4 additions and 4 deletions

View File

@ -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',
] ]

View File

@ -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,

View File

@ -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,