7 lines
277 B
TypeScript
7 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>>;
|