Skip to content

Commit

Permalink
Add public interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
giginet committed May 21, 2024
1 parent 651114e commit a213b66
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Sources/ScipioKit/Producer/Cache/XcodeVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ import Foundation
import RegexBuilder

public struct XcodeVersion: Sendable, Hashable, Codable {
var xcodeVersion: String
var xcodeBuildVersion: String
public var xcodeVersion: String
public var xcodeBuildVersion: String

public init(xcodeVersion: String, xcodeBuildVersion: String) {
self.xcodeVersion = xcodeVersion
self.xcodeBuildVersion = xcodeBuildVersion
}
}

struct XcodeVersionFetcher<E: Executor> {
Expand Down

0 comments on commit a213b66

Please sign in to comment.