(items []model.SettingItem)
| 57 | } |
| 58 | |
| 59 | func SaveSettingItems(items []model.SettingItem) (err error) { |
| 60 | return errors.WithStack(db.Save(items).Error) |
| 61 | } |
| 62 | |
| 63 | func SaveSettingItem(item *model.SettingItem) error { |
| 64 | return errors.WithStack(db.Save(item).Error) |
no outgoing calls
no test coverage detected