Skip to content

Commit

Permalink
Change the Engine interface to match xorm v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lunny committed Aug 11, 2021
1 parent 7b4e150 commit 039ac83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type Engine interface {
Table(tableNameOrBean interface{}) *xorm.Session
Count(...interface{}) (int64, error)
Decr(column string, arg ...interface{}) *xorm.Session
Delete(interface{}) (int64, error)
Delete(...interface{}) (int64, error)
Exec(...interface{}) (sql.Result, error)
Find(interface{}, ...interface{}) error
Get(interface{}) (bool, error)
Expand Down

0 comments on commit 039ac83

Please sign in to comment.