---------- helpers ----------
| 929 | // ---------- helpers ---------- |
| 930 | |
| 931 | type taskCounts struct { |
| 932 | total, inProg, backlog, done int |
| 933 | } |
| 934 | |
| 935 | func projectTaskCounts(db *sql.DB, projectSlug string) (taskCounts, error) { |
| 936 | var c taskCounts |
nothing calls this directly
no outgoing calls
no test coverage detected