dependency-graph/Sources/ShellCommandRunner/ShellCommandRunner.swift

6 lines
164 B
Swift

import Foundation
public protocol ShellCommandRunner {
func run(withArguments arguments: [String], fromDirectoryURL directoryURL: URL) -> ShellCommandOutput
}