Files
swift-inotify/Sources/TaskCLI/Command.swift
T. R. Bernstein 541b9d68a0
Some checks failed
Docs / docs (push) Has been cancelled
Docs / deploy (push) Has been cancelled
Use Shwift library instead of Subprocess
Shwift has a concise API, which makes writing shell code nice and easy.
This is an opinionated decision.
2026-03-20 21:44:05 +01:00

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]
)
}