add games operations

This commit is contained in:
2026-07-26 22:38:33 +07:00
parent cf32a6114f
commit 6fc19833d3
24 changed files with 2430 additions and 96 deletions
+16
View File
@@ -0,0 +1,16 @@
package repos
import (
"time"
)
type Game struct {
ID int
Name string
Description string
StartAt time.Time
Status string
ScenarioId int
Scenario *Scenario
Teams []*Team
}