Remove demo route import and endpoint
cgen-f9de2bceb2e549428538d8c0c41546b5
This commit is contained in:
parent
f835a8a69b
commit
89d9c4a196
1 changed files with 0 additions and 2 deletions
|
|
@ -1,7 +1,6 @@
|
|||
import "dotenv/config";
|
||||
import express from "express";
|
||||
import cors from "cors";
|
||||
import { handleDemo } from "./routes/demo";
|
||||
|
||||
export function createServer() {
|
||||
const app = express();
|
||||
|
|
@ -17,7 +16,6 @@ export function createServer() {
|
|||
res.json({ message: ping });
|
||||
});
|
||||
|
||||
app.get("/api/demo", handleDemo);
|
||||
|
||||
return app;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue