Scaffold project structure

This commit is contained in:
T. R. Bernstein
2026-03-11 16:09:09 +01:00
commit 1a7e5ca5de
8 changed files with 224 additions and 0 deletions

View File

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