From a69ef77e26490b5a1eb63d5bf0fe687fa959ae7f Mon Sep 17 00:00:00 2001 From: Niklas Kapelle Date: Mon, 6 Jan 2025 01:13:24 +0100 Subject: [PATCH] removed inputGame --- internal/model/inputGame.go | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 internal/model/inputGame.go diff --git a/internal/model/inputGame.go b/internal/model/inputGame.go deleted file mode 100644 index 187c485..0000000 --- a/internal/model/inputGame.go +++ /dev/null @@ -1,16 +0,0 @@ -package model - -import ( - "time" -) - -type InputGame struct { - Added time.Time `json:"added"` - Author string `json:"author"` - Team0Player0 string `json:"t0p0"` - Team0Player1 string `json:"t0p1"` - Team1Player0 string `json:"t1p0"` - Team1Player1 string `json:"t1p1"` - Score int `json:"score"` - Overtime bool `jsone:"ot"` -}