mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-08-05 17:08:33 +00:00
20 lines
456 B
Python
20 lines
456 B
Python
"""Stable author-facing API for native nanobot extensions."""
|
|
|
|
from nanobot.extensions.manifest import (
|
|
EXTENSION_API_VERSION,
|
|
DependencyKind,
|
|
ExtensionDependency,
|
|
ExtensionManifest,
|
|
ExtensionPermission,
|
|
)
|
|
from nanobot.extensions.runtime import PythonExtensionApi
|
|
|
|
__all__ = [
|
|
"EXTENSION_API_VERSION",
|
|
"DependencyKind",
|
|
"ExtensionDependency",
|
|
"ExtensionManifest",
|
|
"ExtensionPermission",
|
|
"PythonExtensionApi",
|
|
]
|