Execer is an interface used by MustExec and LoadFile
| 82 | |
| 83 | // Execer is an interface used by MustExec and LoadFile |
| 84 | type Execer interface { |
| 85 | Exec(query string, args ...interface{}) (sql.Result, error) |
| 86 | } |
| 87 | |
| 88 | // Binder is an interface for something which can bind queries (Tx, DB) |
| 89 | type binder interface { |
no outgoing calls
no test coverage detected