Files
clawdbot/apps/macos/Sources/Clawdis/CronSettings.swift
2025-12-24 19:36:10 +01: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
}
}