mirror of
https://github.com/34892002/edgeKey.git
synced 2026-05-12 11:10:09 +08:00
6 lines
131 B
TypeScript
6 lines
131 B
TypeScript
import type { Context, Next } from "hono";
|
|
|
|
export async function adminAuthMiddleware(_c: Context, next: Next) {
|
|
await next();
|
|
}
|