Files
resgen.swift/Sources/ResgenSwift/Generate/Runnable/Runnable.swift
Thibaut Schmitt e9bc779da6
Some checks failed
gitea-openium/resgen.swift/pipeline/head There was a failure building this commit
Add --project-directory option to generate command to easily use relative path
2022-08-31 16:42:22 +02:00

14 lines
182 B
Swift

//
// ShellCommandable.swift
//
//
// Created by Thibaut Schmitt on 30/08/2022.
//
import Foundation
protocol Runnable {
func run(projectDirectory: String, force: Bool)
}