Files
klemek 6a0e162596
Docker Build / build (push) Has been cancelled
Python Lint CI / ruff (push) Has been cancelled
Python Lint CI / ruff-format-check (push) Has been cancelled
Python Lint CI / ty (push) Has been cancelled
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled
feat: metadata
2026-07-16 16:36:55 +02:00

7 lines
182 B
TypeScript

import type { Metadata } from "@/types";
export async function getMetadata(): Promise<Metadata> {
const response = await fetch(`/api/meta`);
return await response.json();
}