ms-tester/internal/models/contest.go
Vyacheslav1557 3c0f01630f refactor:
2024-08-16 16:05:29 +05:00

9 lines
188 B
Go

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
}