Extracted stack files

This commit is contained in:
ka-official
2026-03-25 20:56:28 +00:00
parent 37d0fa9ff3
commit 2d94c769a4
75 changed files with 14782 additions and 53 deletions

16
server/routes.ts Normal file
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;
}