mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 23:40:45 +00:00
8 lines
255 B
TypeScript
8 lines
255 B
TypeScript
/* istanbul ignore file */
|
|
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>>;
|