update set

This commit is contained in:
mr
2024-07-22 16:12:38 +02:00
parent 4a90d3379c
commit ebdbd97ce6
10 changed files with 14 additions and 11 deletions

View File

@@ -16,5 +16,5 @@ type Accessor interface {
DeleteOne(id string) (DBObject, int, error)
CopyOne(data DBObject) (DBObject, int, error)
StoreOne(data DBObject) (DBObject, int, error)
UpdateOne(set map[string]interface{}, id string) (DBObject, int, error)
UpdateOne(set DBObject, id string) (DBObject, int, error)
}