repository.go 83 B

1234567
  1. package repository
  2. import "gorm.io/gorm"
  3. type Repository struct {
  4. db *gorm.DB
  5. }