1
0
This commit is contained in:
konrad
2018-07-12 22:42:41 +02:00
committed by kolaente
parent 4e503072a8
commit e3b996c383
4 changed files with 4 additions and 4 deletions

View File

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