Extracted stack files

This commit is contained in:
ka-official
2026-03-17 20:23:49 +00:00
parent 01443deb1c
commit 8c9d17d465
74 changed files with 14798 additions and 1 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;
}