first commit

This commit is contained in:
kandrusyak
2023-07-14 14:54:41 +03:00
commit 7b03922374
29 changed files with 839 additions and 0 deletions

9
model/events_services.go Normal file
View File

@@ -0,0 +1,9 @@
package model
import "gorm.io/gorm"
type EventsServices struct {
gorm.Model
EventId uint
ServiceId uint
}