Skip to content
Snippets Groups Projects

Client management

Merged Dariusz Rybicki requested to merge feature/client-management into main
1 file
+ 17
0
Compare changes
  • Side-by-side
  • Inline
+ 17
0
import Bindings
public struct Client {
}
extension Client {
public static func live(bindingsClient: BindingsClient) -> Client {
Client()
}
}
#if DEBUG
extension Client {
public static let failing = Client()
}
#endif
Loading