Files
portabase/server/api.ts
T

6 lines
168 B
TypeScript
Raw Normal View History

2026-01-31 22:15:01 +01:00
import express from "express";
import router from "../src/features/api/router";
export function mountApi(app: express.Express) {
app.use("/services/v1", router);
}