1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-20 02:59:54 +02:00
echo/recipe/twitter/handler/handler.go
Vishal Rana f10daac5d6 recipe: twitter like api
Signed-off-by: Vishal Rana <vr@labstack.com>
2016-12-05 23:04:03 -08:00

15 lines
165 B
Go

package handler
import mgo "gopkg.in/mgo.v2"
type (
Handler struct {
DB *mgo.Session
}
)
const (
// Key (Should come from somewhere else).
Key = "secret"
)