shortcutsBundle.swift 252 B

1234567891011121314151617
  1. //
  2. // shortcutsBundle.swift
  3. // shortcuts
  4. //
  5. // Created by Tienson Qin on 2025/9/19.
  6. //
  7. import WidgetKit
  8. import SwiftUI
  9. @main
  10. struct shortcutsBundle: WidgetBundle {
  11. var body: some Widget {
  12. Shortcuts()
  13. shortcutsControl()
  14. }
  15. }