Skip to content

Commit

Permalink
style: remove verbose comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tr1v3r committed Sep 15, 2021
1 parent ef15e9e commit be90ac0
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ type Dao interface {
Limit(limit int) Dao
Offset(offset int) Dao
Scopes(funcs ...func(Dao) Dao) Dao
// Preload(conds ...field.Expr) Dao
// Attrs(attrs ...interface{}) Dao
// Assign(attrs ...interface{}) Dao
Unscoped() Dao

Create(value interface{}) error
Expand All @@ -67,8 +64,6 @@ type Dao interface {
Last() (result interface{}, err error)
Find() (results interface{}, err error)
FindInBatches(dest interface{}, batchSize int, fc func(tx Dao, batch int) error) error
// FirstOrInit(dest interface{}) error
// FirstOrCreate(dest interface{}) error
Model(model interface{}) Dao
Update(column field.Expr, value interface{}) error
UpdateSimple(column field.Expr) error
Expand Down

0 comments on commit be90ac0

Please sign in to comment.