This commit is contained in:
Timo Knuth
2026-02-27 15:19:24 +01:00
parent b7f8221095
commit 253c3c1c6d
134 changed files with 11188 additions and 1871 deletions

View File

@@ -4,6 +4,7 @@ import { newsRouter } from './news'
import { termineRouter } from './termine'
import { stellenRouter } from './stellen'
import { organizationsRouter } from './organizations'
import { messagesRouter } from './messages'
export const appRouter = router({
members: membersRouter,
@@ -11,6 +12,7 @@ export const appRouter = router({
termine: termineRouter,
stellen: stellenRouter,
organizations: organizationsRouter,
messages: messagesRouter,
})
export type AppRouter = typeof appRouter