server
All checks were successful
Deploy / deploy (push) Successful in 24s

This commit is contained in:
Никита Круглицкий
2025-10-16 22:23:30 +06:00
parent 4c368458a9
commit 31460598ba
2 changed files with 4 additions and 2 deletions

View File

@@ -1,10 +1,10 @@
import { router } from '../router'
import { authRouter } from './auth'
import { webrtcRouter } from './webrtc'
// import { webrtcRouter } from './webrtc'
export const appRouter = router({
auth: authRouter,
webrtc: webrtcRouter,
// webrtc: webrtcRouter,
})
export type AppRouter = typeof appRouter