8 lines
192 B
Python
8 lines
192 B
Python
from takopi import api
|
|
|
|
|
|
def test_api_exports() -> None:
|
|
assert api.TAKOPI_PLUGIN_API_VERSION == 1
|
|
assert "TransportRuntime" in api.__all__
|
|
assert api.TransportRuntime is not None
|