mirror of
https://github.com/freedbygrace/ActiveDirectoryManager.git
synced 2026-07-26 11:59:14 +00:00
e871381332
Replit-Commit-Author: Agent Replit-Commit-Session-Id: 705f2157-ef97-4fbd-89e4-8c7f2ecaea90
16 lines
473 B
TypeScript
16 lines
473 B
TypeScript
import type { Express } from "express";
|
|
import { createServer, type Server } from "http";
|
|
import { storage } from "./storage";
|
|
|
|
export async function registerRoutes(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)
|
|
|
|
const httpServer = createServer(app);
|
|
|
|
return httpServer;
|
|
}
|