1
0

Implemented Delete methods on list

This commit is contained in:
konrad
2018-07-10 13:27:25 +02:00
committed by kolaente
parent b1de837c4f
commit c8622b0029
5 changed files with 52 additions and 14 deletions

View File

@ -5,5 +5,5 @@ type CRUDable interface {
ReadOne(int64) error
ReadAll(*User) (interface{}, error)
Update(int64, *User) error
Delete()
Delete(int64, *User) error
}