Files
xtool-mirror/Sources/Supersign/DeveloperServices/DeveloperServicesOperation.swift
2024-12-01 22:38:51 -05:00

18 lines
349 B
Swift

//
// DeveloperServicesOperation.swift
// Supersign
//
// 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
}