secretive/Sources/Packages/Sources/SecretAgentKitProtocol/AgentProtocol.swift

13 lines
198 B
Swift

import Foundation
@objc public protocol AgentProtocol {
func updatedStore(withID: UUID) async throws
}
public struct AgentProtocolStoreNotFoundError: Error {
public init() {
}
}