Files
ps_shop/internal/flags/service.go
T
2026-05-12 01:13:01 +02:00

12 lines
136 B
Go

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