Skip to content
Snippets Groups Projects
Select Git revision
  • afaee6e99a4a7738ec77eb83f756b30b9972e5ae
  • release default protected
  • master protected
  • hotfix/GrpcParameters
  • XX-4441
  • tls-websockets
  • hotfix/allow-web-creds
  • hotfix/nilCert
  • XX-3566_const_time_token_compare
  • AceVentura/AccountBackup
  • dev
  • waitingRoundsRewrite
  • fullRateLimit
  • XX-3564/TlsCipherSuite
  • XX-3563/DisableTlsCheck
  • notls
  • url-repo-rename
  • perftuning
  • Anne/CI2
  • AddedGossipLogging
  • hotfix/connectionReduction
  • v0.0.6
  • v0.0.4
  • v0.0.5
  • v0.0.3
  • v0.0.2
  • v0.0.1
27 results

authError.go

Blame
  • ClientE2EIdProvider.swift 458 B
    import Bindings
    
    public struct ClientE2EIdProvider {
      public var get: () -> Int
    
      public func callAsFunction() -> Int {
        get()
      }
    }
    
    extension ClientE2EIdProvider {
      public static func live(bindingsClientE2E: BindingsE2e) -> ClientE2EIdProvider {
          ClientE2EIdProvider(get: bindingsClientE2E.getID)
      }
    }
    
    #if DEBUG
    extension ClientE2EIdProvider {
      public static let failing = ClientE2EIdProvider {
        fatalError("Not implemented")
      }
    }
    #endif