Files
edgeKey/server/middleware/admin-auth.ts
2026-04-21 11:56:35 +08:00

6 lines
131 B
TypeScript

import type { Context, Next } from "hono";
export async function adminAuthMiddleware(_c: Context, next: Next) {
await next();
}