summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/labstack/echo/cookbook/twitter/handler/handler.go
blob: 263c5e21fa2b24f399c928118096842db0a974d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package handler

import mgo "gopkg.in/mgo.v2"

type (
	Handler struct {
		DB *mgo.Session
	}
)

const (
	// Key (Should come from somewhere else).
	Key = "secret"
)