13 lines
240 B
TypeScript
13 lines
240 B
TypeScript
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 */
|
|
};
|