Jofthomas's picture
Jofthomas HF staff
bulk2
90cbf22
raw
history blame
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;