Exemplo n.º 1
0
Arquivo: tbl.go Projeto: RyanDeng/qbot
func NewReminderTbl(cfg *qmgo.Config) (*ReminderTbl, error) {
	s := qmgo.Open(cfg)

	return &ReminderTbl{
		coll: s.Coll,
	}, nil
}
Exemplo n.º 2
0
Arquivo: tbl.go Projeto: RyanDeng/qbot
func NewContactTbl(cfg *qmgo.Config) (*ContactTbl, error) {
	s := qmgo.Open(cfg)

	return &ContactTbl{
		coll: s.Coll,
	}, nil
}