10 lines
244 B
Go
10 lines
244 B
Go
|
|
package core
|
||
|
|
|
||
|
|
import "database/sql"
|
||
|
|
|
||
|
|
type SqlExecutor interface {
|
||
|
|
Exec(query string, args ...interface{}) (sql.Result, error)
|
||
|
|
Query(query string, args ...interface{}) (*sql.Rows, error)
|
||
|
|
QueryRow(query string, args ...interface{}) *sql.Row
|
||
|
|
}
|