chore: rename project to clawdbot
This commit is contained in:
15
apps/macos/Sources/Clawdbot/CronSettings.swift
Normal file
15
apps/macos/Sources/Clawdbot/CronSettings.swift
Normal file
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user