//update task to db func (m *MdbH) Update(t *dtm.Task) error { t.Time = util.Now() return m.C().Update(bson.M{"_id": t.Id}, t) }
//add task to db func (m *MdbH) Add(t *dtm.Task) error { log.D("MdbH add task by id(%v)", t.Id) t.Time = util.Now() return m.C().Insert(t) }