Skip to content

Commit a14bf9a

Browse files
authored
fix(tarko-agent-server): system setting api 404 issues (#1669)
1 parent eab67bf commit a14bf9a

File tree

1 file changed

+0
-5
lines changed
  • multimodal/tarko/agent-server-next/src/routes

1 file changed

+0
-5
lines changed

multimodal/tarko/agent-server-next/src/routes/system.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,12 @@
66
import { Hono } from 'hono';
77
import * as systemController from '../controllers/system';
88
import type { ContextVariables } from '../types';
9-
import { sessionRestoreMiddleware } from '../middlewares';
10-
119
/**
1210
* Create system information routes
1311
*/
1412
export function createSystemRoutes(): Hono<{ Variables: ContextVariables }> {
1513
const router = new Hono<{ Variables: ContextVariables }>();
1614

17-
router.use('/api/v1/runtime-settings', sessionRestoreMiddleware);
18-
19-
2015
// Health check endpoint
2116
router.get('/api/v1/health', systemController.healthCheck);
2217

0 commit comments

Comments
 (0)