Files
swift-inotify/Sources/TaskCLI/Command.swift
T. R. Bernstein 4b28c293cb 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-22 17:51: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]
)
}