learnlytics-go/handlers/handler.go

12 lines
139 B
Go
Raw Permalink Normal View History

2025-03-20 12:35:13 +01:00
package handlers
import "gorm.io/gorm"
type handler struct {
DB *gorm.DB
}
func New(db *gorm.DB) handler {
return handler{db}
}