Jofthomas's picture
push bulk 1
8cbe088
raw
history blame
253 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;