rwbutler/IPAUploader

View on GitHub
Services/Task/Model/Task.swift

Summary

Maintainability
A
0 mins
Test Coverage
//
//  Task.swift
//  ipa-uploader
//
//  Created by Ross Butler on 11/19/18.
//

import Foundation

protocol Task {
    var arguments: [String]? { get }
    var processURL: URL { get }
    var timeoutInSeconds: Double? { get }
    var workingDirectoryURL: URL? { get }
}