mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-04 11:53:30 +01:00
18 lines
344 B
Swift
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
|
|
}
|