ms-tester/internal/models/contest.go

9 lines
188 B
Go
Raw Normal View History

2024-08-16 11:05:29 +00:00
package models
type Contest struct {
Id *int `db:"id"`
Name *string `db:"name"`
//CreatedAt time.Time `db:"created_at"` FIXME
//UpdatedAt time.Time `db:"updated_at"` FIXME
}