We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eab67bf commit a14bf9aCopy full SHA for a14bf9a
multimodal/tarko/agent-server-next/src/routes/system.ts
@@ -6,17 +6,12 @@
6
import { Hono } from 'hono';
7
import * as systemController from '../controllers/system';
8
import type { ContextVariables } from '../types';
9
-import { sessionRestoreMiddleware } from '../middlewares';
10
-
11
/**
12
* Create system information routes
13
*/
14
export function createSystemRoutes(): Hono<{ Variables: ContextVariables }> {
15
const router = new Hono<{ Variables: ContextVariables }>();
16
17
- router.use('/api/v1/runtime-settings', sessionRestoreMiddleware);
18
19
20
// Health check endpoint
21
router.get('/api/v1/health', systemController.healthCheck);
22
0 commit comments