File size: 243 Bytes
90cbf22
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { httpRouter } from 'convex/server';
import { handleReplicateWebhook } from './music';

const http = httpRouter();
http.route({
  path: '/replicate_webhook',
  method: 'POST',
  handler: handleReplicateWebhook,
});
export default http;