This commit is contained in:
Fran Jurmanović
2024-09-30 22:00:15 +02:00
parent 518ce27d7c
commit 14a689ad76
19 changed files with 968 additions and 0 deletions

12
local/model/concert.go Normal file
View File

@@ -0,0 +1,12 @@
package model
import (
"gorm.io/datatypes"
"gorm.io/gorm"
)
type ConcertModel struct {
gorm.Model
Name string `json:"name"`
StartDate datatypes.Date `json:"startDate"`
}