Build one row per result — billable, free, and unsupported all included.
| 702 | |
| 703 | // Build one row per result — billable, free, and unsupported all included. |
| 704 | type row struct { |
| 705 | nameCol string |
| 706 | typeCol string |
| 707 | unitPriceCol string |
| 708 | hrsPerMoCol string |
| 709 | usageCol string |
| 710 | costCol string |
| 711 | isFree bool |
| 712 | isUnsup bool |
| 713 | isTotal bool |
| 714 | isDefaultUsage bool |
| 715 | } |
| 716 | var rows []row |
| 717 | |
| 718 | for _, r := range results { |
nothing calls this directly
no outgoing calls
no test coverage detected