Some checks failed
Build and Push Docker Images (Trusted) / build-and-push (., docker/caddy/Dockerfile, caddy) (push) Has been cancelled
Build and Push Docker Images (Trusted) / build-and-push (., docker/l4-port-manager/Dockerfile, l4-port-manager) (push) Has been cancelled
Build and Push Docker Images (Trusted) / build-and-push (., docker/web/Dockerfile, web) (push) Has been cancelled
Tests / test (push) Has been cancelled
13 lines
245 B
TypeScript
Executable File
13 lines
245 B
TypeScript
Executable File
import { requireAdmin } from "@/src/lib/auth";
|
|
import ApiDocsClient from "./ApiDocsClient";
|
|
|
|
export const metadata = {
|
|
title: "API Docs",
|
|
};
|
|
|
|
export default async function ApiDocsPage() {
|
|
await requireAdmin();
|
|
|
|
return <ApiDocsClient />;
|
|
}
|