Skip to content
Snippets Groups Projects

Update Bindings

Merged Dariusz Rybicki requested to merge feature/update-bindings into development
2 files
+ 25
0
Compare changes
  • Side-by-side
  • Inline
Files
2
import Bindings
public struct Cmix {
public var getId: CmixGetId
public var makeReceptionIdentity: MakeReceptionIdentity
}
extension Cmix {
public static func live(_ bindingsCmix: BindingsCmix) -> Cmix {
Cmix(
getId: .live(bindingsCmix),
makeReceptionIdentity: .live(bindingsCmix)
)
}
@@ -14,6 +16,7 @@ extension Cmix {
extension Cmix {
public static let unimplemented = Cmix(
getId: .unimplemented,
makeReceptionIdentity: .unimplemented
)
}
Loading