mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2026-01-11 09:34:22 +01:00
13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
import { Hono } from "hono";
|
|
import type { UserConfig } from "../lib/config/config";
|
|
|
|
export type HonoContext = {
|
|
Variables: {
|
|
userConfig: UserConfig;
|
|
};
|
|
};
|
|
|
|
export const honoApp = new Hono<HonoContext>().basePath("/api");
|
|
|
|
export type HonoAppType = typeof honoApp;
|