Change how agent launch/relaunch is performed (#737)

This commit is contained in:
Max Goedjen
2025-09-30 23:57:06 -07:00
committed by GitHub
parent 84d5a56fb0
commit d9a3f0c813
8 changed files with 89 additions and 134 deletions

View File

@@ -1,7 +1,7 @@
import Foundation
import AppKit
class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
class PreviewAgentLaunchController: AgentLaunchControllerProtocol {
let running: Bool
let process: NSRunningApplication?
@@ -15,4 +15,13 @@ class PreviewAgentStatusChecker: AgentStatusCheckerProtocol {
func check() {
}
func install() async throws {
}
func uninstall() async throws {
}
func forceLaunch() async throws {
}
}