package booking import ( "gorm.io/gorm" ) type Service struct { db *gorm.DB } func NewService(db *gorm.DB) *Service { return &Service{db: db} }