Remove trpc and use H3 instead

This commit is contained in:
2023-12-09 21:26:34 +01:00
parent bcd123c5df
commit f0aa9ebdf4
11 changed files with 225 additions and 0 deletions

7
src/auth.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
declare module '#auth-utils' {
interface UserSession {
user: {
username: string
}
}
}