openclaw/apps/macos/Sources/Clawdbot/CronSettings.swift

16 lines
358 B
Swift
Raw Normal View History

import Observation
2025-12-13 02:34:18 +00:00
import SwiftUI
struct CronSettings: View {
@Bindable var store: CronJobsStore
2025-12-24 19:36:10 +01:00
@State var showEditor = false
@State var editingJob: CronJob?
@State var editorError: String?
@State var isSaving = false
@State var confirmDelete: CronJob?
2025-12-13 02:34:18 +00:00
init(store: CronJobsStore = .shared) {
self.store = store
}
2025-12-24 17:42:14 +01:00
}