mirror of
https://github.com/openclaw/clawhub.git
synced 2026-08-14 00:47:57 +00:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import migrations from "@convex-dev/migrations/convex.config.js";
|
|
import rateLimiter from "@convex-dev/rate-limiter/convex.config.js";
|
|
import { defineApp } from "convex/server";
|
|
|
|
const app = defineApp();
|
|
app.use(migrations);
|
|
app.use(rateLimiter);
|
|
|
|
export default app;
|