Remove demo route import and endpoint

cgen-f9de2bceb2e549428538d8c0c41546b5
This commit is contained in:
Builder.io 2025-08-06 02:13:32 +00:00
parent f835a8a69b
commit 89d9c4a196

View file

@ -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;
}