a tool for shared writing and social publishing
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";
7import { migrate_user_to_standard } from "./functions/migrate_user_to_standard";
8
9export const { GET, POST, PUT } = serve({
10 client: inngest,
11 functions: [
12 index_post_mention,
13 come_online,
14 batched_update_profiles,
15 index_follows,
16 migrate_user_to_standard,
17 ],
18});