DataRefreshCommand updates the data files associated with the installed hub items.
| 28 | |
| 29 | // DataRefreshCommand updates the data files associated with the installed hub items. |
| 30 | type DataRefreshCommand struct { |
| 31 | Force bool |
| 32 | } |
| 33 | |
| 34 | func NewDataRefreshCommand(force bool) *DataRefreshCommand { |
| 35 | return &DataRefreshCommand{Force: force} |
nothing calls this directly
no outgoing calls
no test coverage detected