SystemHandler handles system-related operations
| 18 | |
| 19 | // SystemHandler handles system-related operations |
| 20 | type SystemHandler struct { |
| 21 | updateSvc systemUpdateService |
| 22 | lockSvc *service.SystemOperationLockService |
| 23 | } |
| 24 | |
| 25 | type systemUpdateService interface { |
| 26 | CheckUpdate(ctx context.Context, force bool) (*service.UpdateInfo, error) |
nothing calls this directly
no outgoing calls
no test coverage detected