Skip to content

Commit

Permalink
add LoggedInDependency protocol (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
magi82 authored Apr 6, 2024
1 parent 4b024ab commit 8828a65
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
import NeedleFoundation
import UIKit

class LoggedInComponent: Component<EmptyDependency>, LoggedInBuilder {
protocol LoggedInDependency: Dependency {

}

class LoggedInComponent: Component<LoggedInDependency>, LoggedInBuilder {

public var scoreStream: ScoreStream {
return mutableScoreStream
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
import NeedleFoundation
import SwiftUI

class LoggedInComponent: Component<EmptyDependency>, LoggedInBuilder {
protocol LoggedInDependency: Dependency {

}

class LoggedInComponent: Component<LoggedInDependency>, LoggedInBuilder {

public var scoreStream: ScoreStream {
return mutableScoreStream
Expand Down

0 comments on commit 8828a65

Please sign in to comment.