web/context.go
2018-05-16 23:01:06 -04:00

18 lines
291 B
Go

package main
import (
"github.com/jmoiron/sqlx"
"github.com/labstack/echo"
"go.uber.org/zap"
)
// Context is the custom context for this web server
type Context struct {
echo.Context
// DB is the database connection
DB *sqlx.DB
// Log is the core logger
Log *zap.SugaredLogger
}