Skip to content

Commit 8f2d754

Browse files
committed
more visibility modifiers
1 parent b6e0391 commit 8f2d754

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Reactor/Sources/Reactor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ extension Middleware {
2323
}
2424
}
2525

26-
struct Middlewares<S: State> {
26+
public struct Middlewares<S: State> {
2727
private(set) var middleware: AnyMiddleware
2828
}
2929

3030
public protocol AnySubscriber: class {
3131
func _update(with state: Any)
3232
}
3333

34-
protocol Subscriber: AnySubscriber {
34+
public protocol Subscriber: AnySubscriber {
3535
associatedtype State
3636
func update(with state: State)
3737
}

0 commit comments

Comments
 (0)