1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 10:18:38 +00:00

use x.SQL instead of x.Sql

This commit is contained in:
Lunny Xiao
2016-11-10 15:20:48 +08:00
parent 145648a233
commit 7dcc3bc3d7
4 changed files with 5 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ type Engine interface {
Insert(...interface{}) (int64, error)
InsertOne(interface{}) (int64, error)
Iterate(interface{}, xorm.IterFunc) error
Sql(string, ...interface{}) *xorm.Session
SQL(interface{}, ...interface{}) *xorm.Session
Where(interface{}, ...interface{}) *xorm.Session
}