Add a TODO

This commit is contained in:
Deluan 2020-01-13 00:52:48 -05:00 committed by Deluan Quintão
parent fddd0dc353
commit b07642a8d1

View File

@ -59,6 +59,7 @@ func (r *checkSumRepository) SetData(newSums map[string]string) error {
for k, v := range newSums {
cks := CheckSums{ID: k, Value: v}
// TODO Use InsertMulti
_, err := Db().Insert(&cks)
if err != nil {
return err