mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 14:41:28 -07:00
optimize routes
This commit is contained in:
@@ -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([]))
|
||||
Reference in New Issue
Block a user