optimize routes

This commit is contained in:
Devin Zuczek
2026-07-07 01:22:05 -04:00
parent 605ba02e6e
commit 6a49fa19ac
13 changed files with 636 additions and 543 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Hono } from 'hono'
import type { App } from '../context'
// ---- Social ----------------------------------------------------------------
export const socialRoutes = new Hono<App>({ strict: false })
.get('/api/relationships/v2/get', (c) => c.json([]))
.get('/api/messages/v2/get', (c) => c.json([]))
.get('/api/messages/v1/favoriteFriendOnlineStatus', (c) => c.json([]))