Files
2026-06-20 11:07:01 -04:00

14 lines
165 B
Go

package repository
import (
"gorm.io/gorm"
)
type Repository struct {
DB *gorm.DB
}
func NewRepository(db *gorm.DB) *Repository {
return &Repository{DB: db}
}