DaysMap returns a map of the days of the week that the workspace must be restarted.
()
| 69 | // DaysMap returns a map of the days of the week that the workspace must be |
| 70 | // restarted. |
| 71 | func (r TemplateAutostopRequirement) DaysMap() map[time.Weekday]bool { |
| 72 | return daysMap(r.DaysOfWeek) |
| 73 | } |
| 74 | |
| 75 | // daysMap returns a map of the days of the week that are specified in the |
| 76 | // bitmap. |
no test coverage detected