(ctx context.Context, query string, args ...interface{})
| 34 | type sqlQuerier interface { |
| 35 | Query(query string, args ...interface{}) (*sql.Rows, error) |
| 36 | QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) |
| 37 | } |
| 38 | |
| 39 | type sqlExecuter interface { |
no outgoing calls