Files
clawdbot/apps/macos/Sources/Clawdbot/CronSettings.swift
2026-01-04 14:38:51 +00:00

16 lines
358 B
Swift

import Observation
import SwiftUI
struct CronSettings: View {
@Bindable var store: CronJobsStore
@State var showEditor = false
@State var editingJob: CronJob?
@State var editorError: String?
@State var isSaving = false
@State var confirmDelete: CronJob?
init(store: CronJobsStore = .shared) {
self.store = store
}
}