Skip to content
Snippets Groups Projects

Draft: Remove notifications

Open Krzysztof Mochocki requested to merge kmochocki/mt-remove-notifications into develop
Files
128
+ 33
0
from __future__ import annotations
from beekeepy._apis.abc.api import (
AbstractApi,
AbstractAsyncApi,
AbstractSyncApi,
ApiArgumentSerialization,
ApiArgumentsToSerialize,
HandleT,
RegisteredApisT,
)
from beekeepy._apis.abc.api_collection import AbstractAsyncApiCollection, AbstractSyncApiCollection
from beekeepy._apis.abc.sendable import (
AsyncSendable,
SyncSendable,
)
from beekeepy._apis.abc.session_holder import AsyncSessionHolder, SyncSessionHolder
__all__ = [
"AbstractApi",
"AbstractAsyncApi",
"AbstractAsyncApiCollection",
"AbstractSyncApi",
"AbstractSyncApiCollection",
"ApiArgumentSerialization",
"ApiArgumentsToSerialize",
"AsyncSendable",
"AsyncSessionHolder",
"HandleT",
"RegisteredApisT",
"SyncSendable",
"SyncSessionHolder",
]
Loading