a tool for shared writing and social publishing
at debug/datetime 16 lines 525 B view raw
1import { serve } from "inngest/next"; 2import { inngest } from "app/api/inngest/client"; 3import { index_post_mention } from "./functions/index_post_mention"; 4import { come_online } from "./functions/come_online"; 5import { batched_update_profiles } from "./functions/batched_update_profiles"; 6import { index_follows } from "./functions/index_follows"; 7 8export const { GET, POST, PUT } = serve({ 9 client: inngest, 10 functions: [ 11 index_post_mention, 12 come_online, 13 batched_update_profiles, 14 index_follows, 15 ], 16});