Files
gonic/handler/handler.go
2019-03-29 17:14:33 +00:00

14 lines
224 B
Go

package handler
import (
"github.com/jinzhu/gorm"
"github.com/labstack/echo"
)
// Handler is passed to the handler functions so
// they can access the database
type Handler struct {
DB *gorm.DB
Router *echo.Echo
}