boredgame/src/lib/server/api/index.ts

26 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-07-21 19:05:48 +00:00
import { Hono } from 'hono';
import { hc } from 'hono/client';
import { validateAuthSession, verifyOrigin } from './middleware/auth.middleware';
import users from './controllers/iam.controller';
import { config } from './common/config';
/* ----------------------------------- Api ---------------------------------- */
const app = new Hono().basePath('/api');
/* --------------------------- Global Middlewares --------------------------- */
app.use(verifyOrigin).use(validateAuthSession);
/* --------------------------------- Routes --------------------------------- */
const routes = app
.route('/iam', users)
.get('/', (c) => c.json({ message: 'Server is healthy' }));
2024-07-21 19:05:48 +00:00
/* -------------------------------------------------------------------------- */
/* Exports */
/* -------------------------------------------------------------------------- */
export type AppType = typeof routes;
export const rpc = hc<AppType>(config.ORIGIN);
2024-07-21 19:05:48 +00:00
export type ApiClient = typeof rpc;
export type ApiRoutes = typeof routes;
export { app };