chore: implement feedback

This commit is contained in:
Catalin Pit
2025-07-25 11:41:46 +03:00
parent 2c579c6455
commit 191b333e34
17 changed files with 249 additions and 239 deletions

View File

@ -1,6 +1,5 @@
import { adminRouter } from './admin-router/router';
import { apiTokenRouter } from './api-token-router/router';
import { attachmentRouter } from './attachment-router/router';
import { authRouter } from './auth-router/router';
import { documentRouter } from './document-router/router';
import { embeddingPresignRouter } from './embedding-router/_router';
@ -32,7 +31,6 @@ export const appRouter = router({
template: templateRouter,
webhook: webhookRouter,
embeddingPresign: embeddingPresignRouter,
attachment: attachmentRouter,
});
export type AppRouter = typeof appRouter;