mirror of
https://github.com/labstack/echo.git
synced 2026-05-16 09:48:24 +02:00
49321f5829
Signed-off-by: Vishal Rana <vr@labstack.com>
15 lines
165 B
Go
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"
|
|
)
|