From 57513083ba7262b3d8a1ce42716bfef14724865a Mon Sep 17 00:00:00 2001 From: Finn Voorhees Date: Thu, 12 Dec 2024 17:45:03 +0000 Subject: [PATCH] Expose repo id/type (#144) --- Sources/Hub/Hub.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Hub/Hub.swift b/Sources/Hub/Hub.swift index 613cdd9..4116dcb 100644 --- a/Sources/Hub/Hub.swift +++ b/Sources/Hub/Hub.swift @@ -24,8 +24,8 @@ public extension Hub { } struct Repo { - let id: String - let type: RepoType + public let id: String + public let type: RepoType public init(id: String, type: RepoType = .models) { self.id = id