10 lines
249 B
Swift
10 lines
249 B
Swift
import Foundation
|
|
|
|
public enum CLIProbeSessionResetter {
|
|
public static func resetAll() async {
|
|
await ClaudeCLISession.shared.reset()
|
|
await CodexCLISession.shared.reset()
|
|
await AntigravityCLISession.shared.reset()
|
|
}
|
|
}
|