mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
9 lines
135 B
Swift
9 lines
135 B
Swift
import Foundation
|
|
|
|
public enum Platform: String, Hashable, CaseIterable {
|
|
case iOS
|
|
case watchOS
|
|
case tvOS
|
|
case macOS
|
|
}
|