Add leaderboards

This commit is contained in:
2025-07-21 18:03:44 -07:00
parent 1991e53999
commit cb9d9fe02d
6 changed files with 74 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
export interface LeaderboardEntry {
username: string
score: bigint
scoreFormatted: string
}