Skip to content
Snippets Groups Projects

Update Bindings

Merged Dariusz Rybicki requested to merge feature/update-bindings into development
2 files
+ 32
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -2,6 +2,7 @@ import Bindings
public struct E2E {
public var getId: E2EGetId
public var getReceptionId: E2EGetReceptionId
// TODO:
}
@@ -9,13 +10,15 @@ public struct E2E {
extension E2E {
public static func live(_ bindingsE2E: BindingsE2e) -> E2E {
E2E(
getId: .live(bindingsE2E: bindingsE2E)
getId: .live(bindingsE2E: bindingsE2E),
getReceptionId: .live(bindingsE2E: bindingsE2E)
)
}
}
extension E2E {
public static let unimplemented = E2E(
getId: .unimplemented
getId: .unimplemented,
getReceptionId: .unimplemented
)
}
Loading