Skip to content

Instantly share code, notes, and snippets.

@thexande
Last active December 16, 2018 05:09
Show Gist options
  • Save thexande/d656d271d508dbfd6b9bb863222e350c to your computer and use it in GitHub Desktop.
Save thexande/d656d271d508dbfd6b9bb863222e350c to your computer and use it in GitHub Desktop.
extension World {
public final class Factory {
public func makeStore(with url: URL) -> World.Store {
return World.Store(client: ApolloClient(url: url))
}
public init() { }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment