Fileable.swift/Sources/FileKitProtocols.swift

13 lines
265 B
Swift

import Foundation
public protocol FileKitProtocol {
//
}
protocol BasicFileCommands {
func cd(_ path: String) throws
func mkdir(_ path: String) throws
func rm(_ target: String) throws
func mv(from fromPath: String, to toPath: String) throws
}