feat(kook): add eba adapter

This commit is contained in:
wangcham
2026-06-04 18:29:46 +08:00
parent b68ff1956c
commit 1f67ff2e8d
12 changed files with 1336 additions and 0 deletions
@@ -0,0 +1,13 @@
from __future__ import annotations
try:
from langbot_plugin.api.entities.builtin.platform.errors import NotSupportedError
except ModuleNotFoundError:
class NotSupportedError(Exception):
def __init__(self, api_name: str, *args):
super().__init__(f"API '{api_name}' is not supported by this adapter", *args)
self.api_name = api_name
__all__ = ['NotSupportedError']