chore: linting

This commit is contained in:
zhom
2026-03-28 23:31:20 +04:00
parent ba750a3401
commit 612c6610ce
36 changed files with 284 additions and 285 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ export class SyncController {
constructor(private readonly syncService: SyncService) {}
private getUserContext(req: Request): UserContext {
return (req as any).user as UserContext;
return (req as unknown as Record<string, unknown>).user as UserContext;
}
@Post("stat")