NewApp creates a new App with the given PRD.
(prdPath string, provider loop.Provider)
| 241 | |
| 242 | // NewApp creates a new App with the given PRD. |
| 243 | func NewApp(prdPath string, provider loop.Provider) (*App, error) { |
| 244 | return NewAppWithOptions(prdPath, 10, provider) |
| 245 | } |
| 246 | |
| 247 | // NewAppWithOptions creates a new App with the given PRD and options. |
| 248 | // If maxIter <= 0, it will be calculated dynamically based on remaining stories. |
nothing calls this directly
no test coverage detected