Something went wrong on our end
Select Git revision
restoreContacts.go
-
Richard T. Carback III authored
Move restore contacts core functions into it's own package. Remove any references to bindings in cmd/ and the new package.
Richard T. Carback III authoredMove restore contacts core functions into it's own package. Remove any references to bindings in cmd/ and the new package.
CMixManagerRemove.swift NaN GiB
import Foundation
import XCTestDynamicOverlay
public struct CMixManagerRemove {
public var run: () throws -> Void
public func callAsFunction() throws {
try run()
}
}
extension CMixManagerRemove {
public static func live(
directoryPath: String,
fileManager: FileManager
) -> CMixManagerRemove {
CMixManagerRemove {
try fileManager.removeItem(atPath: directoryPath)
}
}
}
extension CMixManagerRemove {
public static let unimplemented = CMixManagerRemove(
run: XCTUnimplemented("\(Self.self)")
)
}