removed inputGame

This commit is contained in:
Niklas Kapelle 2025-01-06 01:13:24 +01:00
parent 5a7ced2e0e
commit a69ef77e26
Signed by: niklas
GPG Key ID: 4EB651B36D841D16

View File

@ -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"`
}