ProgressPath returns the progress.md path for a given prd.json path.
(prdPath string)
| 20 | |
| 21 | // ProgressPath returns the progress.md path for a given prd.json path. |
| 22 | func ProgressPath(prdPath string) string { |
| 23 | return filepath.Join(filepath.Dir(prdPath), "progress.md") |
| 24 | } |
| 25 | |
| 26 | var storyHeaderRegex = regexp.MustCompile(`^## (\d{4}-\d{2}-\d{2}) - (.+)$`) |
| 27 |
no outgoing calls