Shwift has a concise API, which makes writing shell code nice and easy. This is an opinionated decision.
10 lines
250 B
Swift
10 lines
250 B
Swift
import Script
|
|
|
|
@main
|
|
struct Command: AsyncParsableCommand {
|
|
static let configuration = CommandConfiguration(
|
|
abstract: "Project tasks of Astzweig's Swift Inotify project.",
|
|
subcommands: [TestCommand.self, GenerateDocumentationCommand.self]
|
|
)
|
|
}
|