(ctx context.Context, dest interface{}, q string, args ...interface{})
| 8 | // Database is an interface which a database(sql) should implement. |
| 9 | type Database interface { |
| 10 | Get(ctx context.Context, dest interface{}, q string, args ...interface{}) error |
| 11 | Select(ctx context.Context, dest interface{}, q string, args ...interface{}) error |
| 12 | Exec(ctx context.Context, q string, args ...interface{}) (sql.Result, error) |
| 13 | } |
no outgoing calls
no test coverage detected