Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 7e7fea6

Browse files
authored
Refactor DownloadSignManager for improved clarity
1 parent 84bfb00 commit 7e7fea6

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Sources/prostore/signing/DownloadSignManager.swift

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
import Foundation
33
import Combine
44

5-
// Import the signer module (assuming it exists)
6-
// If not, you'll need to define or import the signer
7-
85
class DownloadSignManager: ObservableObject {
96
@Published var progress: Double = 0.0
107
@Published var status: String = ""
@@ -15,7 +12,7 @@ class DownloadSignManager: ObservableObject {
1512
private var cancellables = Set<AnyCancellable>()
1613

1714
// Assuming signer is available - you might need to import it
18-
private let signer = Signer() // Adjust based on your actual signer class
15+
private let signer = signer()
1916

2017
func downloadAndSign(app: AltApp) {
2118
guard let downloadURL = app.downloadURL else {
@@ -268,3 +265,4 @@ class DownloadSignManager: ObservableObject {
268265
return appFolder
269266
}
270267
}
268+

0 commit comments

Comments
 (0)