initial commit

This commit is contained in:
jackycheng
2025-08-25 17:11:15 +08:00
commit 436b6f66a6
31 changed files with 8295 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Express } from "express";
export const createApis = (app: Express) => {
app.get("/api/test", async (req, res) => {
res.status(200).json({
message: "success",
data: null,
});
});
/** add apis here */
};