taskFile is a helper to generate task markdown content.
(id, title, status string)
| 325 | |
| 326 | // taskFile is a helper to generate task markdown content. |
| 327 | func taskFile(id, title, status string) string { |
| 328 | return "---\nid: \"" + id + "\"\ntitle: \"" + title + "\"\nstatus: " + status + "\n---\n" |
| 329 | } |
no outgoing calls
no test coverage detected