Skip to content
Snippets Groups Projects
Select Git revision
  • da08ed89006be1f683916608718227c8250d4b32
  • main default protected
  • dev protected
  • hotfixes-oct-2022
  • refactor/avatar-cell
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1
  • 1.0.8
  • 1.0.7
  • 1.0.6
12 results

RestoreSFTPController.swift

Blame
  • GetGitVersion.swift 428 B
    import Bindings
    import XCTestDynamicOverlay
    
    public struct GetGitVersion {
      public var run: () -> String
    
      public func callAsFunction() -> String {
        run()
      }
    }
    
    extension GetGitVersion {
      public static let live = GetGitVersion(
        run: BindingsGetGitVersion
      )
    }
    
    extension GetGitVersion {
      public static let unimplemented = GetGitVersion(
        run: XCTUnimplemented("\(Self.self)", placeholder: "unimplemented")
      )
    }