normalize project structure: src/client + src/server + src/shared, standardize biome to lineWidth 80

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-04 23:00:43 +01:00
parent 6e9cd45671
commit 1b5cff78e2
106 changed files with 815 additions and 547 deletions
+14
View File
@@ -0,0 +1,14 @@
import { z } from "zod"
export const steamConfigSchema = z.object({
apiKey: z.string().min(1, "API key is required"),
steamId: z.string().min(1, "Steam ID is required"),
})
export type SteamConfig = z.infer<typeof steamConfigSchema>
export const gogConfigSchema = z.object({
accessToken: z.string(),
refreshToken: z.string(),
userId: z.string(),
})
export type GogConfig = z.infer<typeof gogConfigSchema>