Skip to content
This repository was archived by the owner on Nov 19, 2023. It is now read-only.

Commit 526502c

Browse files
committed
public access level
1 parent e4bbfb6 commit 526502c

8 files changed

Lines changed: 7 additions & 7 deletions

File tree

Sources/Entity.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
import Foundation
1010

11-
protocol Entity {
11+
public protocol Entity {
1212

1313
}

Sources/Interactor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
import Foundation
1010

11-
protocol Interactor {
11+
public protocol Interactor {
1212

1313
}

Sources/Module.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
import Foundation
1010

11-
protocol Module {
11+
public protocol Module {
1212

1313
}

Sources/Presenter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
import Foundation
1010

11-
protocol Presenter: class {
11+
public protocol Presenter: class {
1212

1313
}

Sources/Router.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import Foundation
1010
import UIKit
1111

12-
protocol Router {
12+
public protocol Router {
1313

1414
var viewController: UIViewController? { get set }
1515
}

Sources/View.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
import Foundation
1010

11-
protocol View: class {
11+
public protocol View: class {
1212

1313
}

VIPER.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'VIPER'
3-
s.version = '1.0.0'
3+
s.version = '1.0.1'
44
s.summary = 'VIPER protocols'
55
s.description = <<-DESC
66
Essential protocols for the VIPER architecture.
Binary file not shown.

0 commit comments

Comments
 (0)