Migrate to single DB for both users and tournaments and introduce userService

This commit is contained in:
2026-03-06 08:41:49 +01:00
parent 44e7ea9f73
commit 46467c457a
5 changed files with 115 additions and 7 deletions

View File

@@ -0,0 +1,6 @@
export interface User {
id: number;
username: string;
password: string;
}