Extracted stack files

This commit is contained in:
yusufipk
2025-12-17 13:31:08 +00:00
parent 35ca3d93e4
commit 51eacc7a1c
75 changed files with 14489 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import type { Express } from "express";
import { createServer, type Server } from "http";
import { storage } from "./storage";
export async function registerRoutes(
httpServer: Server,
app: Express
): Promise<Server> {
// put application routes here
// prefix all routes with /api
// use storage to perform CRUD operations on the storage interface
// e.g. storage.insertUser(user) or storage.getUserByUsername(username)
return httpServer;
}