Files
xtool-mirror/Sources/XKit/DeveloperServices/DeveloperServicesOperation.swift
2025-05-06 11:30:59 +05:30

18 lines
344 B
Swift

//
// DeveloperServicesOperation.swift
// XKit
//
// Created by Kabir Oberai on 13/10/19.
// Copyright © 2019 Kabir Oberai. All rights reserved.
//
import Foundation
public protocol DeveloperServicesOperation: Sendable {
associatedtype Response
var context: SigningContext { get }
func perform() async throws -> Response
}