func init()

in pkg/mem/store.go [33:39]


func init() {
	if db, err := NewDB(); err != nil {
		panic(err)
	} else {
		DB = db
	}
}