Task.swift 442 B

1234567891011121314151617181920212223
  1. //
  2. // Task.swift
  3. // LoopFollow
  4. //
  5. // Created by Jonas Björkert on 2025-01-12.
  6. // Copyright © 2025 Jon Fawcett. All rights reserved.
  7. //
  8. import Foundation
  9. extension MainViewController {
  10. func scheduleAllTasks() {
  11. scheduleBGTask()
  12. scheduleProfileTask()
  13. scheduleDeviceStatusTask()
  14. scheduleTreatmentsTask()
  15. scheduleMinAgoTask()
  16. scheduleCalendarTask()
  17. scheduleAlarmTask()
  18. }
  19. }