Add GITADORA rival support

Implement rival registration, profile responses, and Web UI controls.

The UI is functional only; visual design and polish are not included in this change.
This commit is contained in:
jjk1227
2026-08-21 15:31:31 +09:00
parent 12a286875f
commit 6768ed89b5
7 changed files with 289 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
export interface Rival {
collection: 'rival';
game: 'gf' | 'dm';
version: string;
rival_refid: string;
slot: number;
}