5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-07 10:16:16 +00:00

15 lines
165 B
Go
Raw Normal View History

2017-02-18 23:00:46 +01:00
package handler
import mgo "gopkg.in/mgo.v2"
type (
Handler struct {
DB *mgo.Session
}
)
const (
// Key (Should come from somewhere else).
Key = "secret"
)