Files
rock1hu-bot/local/model/concert.go
Fran Jurmanović 14a689ad76 init
2024-09-30 22:00:15 +02:00

13 lines
190 B
Go

package model
import (
"gorm.io/datatypes"
"gorm.io/gorm"
)
type ConcertModel struct {
gorm.Model
Name string `json:"name"`
StartDate datatypes.Date `json:"startDate"`
}