Matou-Garou / convex /http.ts
Jofthomas's picture
Jofthomas HF staff
bulk
ce8b18b
raw
history blame contribute delete
243 Bytes
import { httpRouter } from 'convex/server';
import { handleReplicateWebhook } from './music';
const http = httpRouter();
http.route({
path: '/replicate_webhook',
method: 'POST',
handler: handleReplicateWebhook,
});
export default http;