Rivoreo Source Code Repositories
src.rivoreo.one
/
aichatbot
/
refs/heads/main
/
.
/
src
/
claude_agent
/
webhook
/
__init__.py
blob: 44298f7da2d2b41ace168de6c5166d0aa559a23d [
file
] [
log
] [
blame
] [
raw
]
"""
Webhook系统模块
实现Bot间消息广播和接收功能
"""
from
.
server
import
WebhookServer
from
.
client
import
WebhookClient
from
.
models
import
BotMessage
,
WebhookConfig
__all__
=
[
'WebhookServer'
,
'WebhookClient'
,
'BotMessage'
,
'WebhookConfig'
]