mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-25 05:01:34 +03:00
8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
import type { RuntimeEnv } from "../runtime.js";
|
|
import { startWebhook } from "../twilio/webhook.js";
|
|
|
|
// Thin wrapper to keep webhook server co-located with other webhook helpers.
|
|
export { startWebhook };
|
|
|
|
export type WebhookServer = Awaited<ReturnType<typeof startWebhook>>;
|