mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
16 lines
354 B
Swift
16 lines
354 B
Swift
import Foundation
|
|
import Path
|
|
|
|
public enum Downloader: String, CaseIterable, Identifiable, CustomStringConvertible {
|
|
case aria2
|
|
case urlSession
|
|
|
|
public var id: Self { self }
|
|
|
|
public var description: String {
|
|
switch self {
|
|
case .urlSession: return "URLSession"
|
|
case .aria2: return "aria2"
|
|
}
|
|
}
|
|
}
|