(ctx context.Context, dest ...interface{})
| 14 | // ExecutableQuery an interface that requires queries of this type to have an exec function. |
| 15 | type ExecutableQuery interface { |
| 16 | Exec(ctx context.Context, dest ...interface{}) (sql.Result, error) |
| 17 | } |
| 18 | |
| 19 | // GetAddProjectQuery constructs a query to create a new project in the db. |
no outgoing calls