feat(navigation): add controller + tRPC router + header global + barrel

This commit is contained in:
2026-05-05 08:34:37 +02:00
parent 19f32ec94d
commit 014dbc81ec
7 changed files with 78 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
import type { Header } from "../../entities/header";
import { getHeaderUseCase } from "../../application/use-cases/get-header.use-case";
export async function getHeaderController(): Promise<Header> {
return getHeaderUseCase();
}