Files
swift-inotify/Sources/TaskCLI/Command.swift
2026-03-11 16:10:48 +01:00

10 lines
223 B
Swift

import ArgumentParser
@main
struct Command: AsyncParsableCommand {
static let configuration = CommandConfiguration(
abstract: "Project tasks of Astzweig's Swift Inotify project.",
subcommands: [TestCommand.self]
)
}