I have some protocols
LoginStrategy
public protocol LoginStrategy { func login(_ viewController: UIViewController) func getUserI
Just add to your FacebookLoginStrategy:
public init() {}
As long as you do not implement init() explicitly, it is marked as internal by default. You need to overwrite that permission level to be able to instantiate from outside your framework.