(waker: Waker, config: UpdateConfig)
| 60 | } |
| 61 | |
| 62 | pub fn start_update(waker: Waker, config: UpdateConfig) -> JobState { |
| 63 | start_job(waker, "Update app", Job::Update, move |context, cancel| { |
| 64 | run_update(&context, cancel, config).map(JobResult::Update) |
| 65 | }) |
| 66 | } |
nothing calls this directly
no test coverage detected