Files
astra-events/handler/handler.go
2023-08-02 01:51:27 +03:00

12 lines
162 B
Go

package handler
import (
"github.com/go-playground/validator/v10"
"gorm.io/gorm"
)
type Handler struct {
DB *gorm.DB
Validator *validator.Validate
}