Esempio n. 1
0
File: tbl.go Progetto: RyanDeng/qbot
func NewReminderTbl(cfg *qmgo.Config) (*ReminderTbl, error) {
	s := qmgo.Open(cfg)

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

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