Skip to content

Commit ced4441

Browse files
committed
исправлен доступ к файлу
1 parent 911c45c commit ced4441

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

Sources/iOSIntPackage/DataProvider.swift

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@
77

88
import UIKit
99

10+
// MARK: - DataProvider
11+
1012
public final class DataProvider {
1113

14+
// MARK: - Private properties
15+
1216
private let student: String
1317

1418
public init(student name: String) {
@@ -23,8 +27,14 @@ public final class DataProvider {
2327
public func fetchImage() -> UIImage {
2428
return UIImage(
2529
named: "checkmark",
26-
in: Bundle(for: DataProvider.self),
30+
in: Bundle.module,
2731
compatibleWith: nil
2832
)!
2933
}
3034
}
35+
36+
// MARK: - Extension
37+
38+
extension UIViewController {
39+
40+
}

0 commit comments

Comments
 (0)