-
Oh this is useful, swift-argument-parser has an `AsyncParsableCommand` which is basically a drop-in replacement for `ParsableCommand` with async support!
Too bad it doesn't support `CommandConfiguration` 🥲
Today I've also learned you can rename your main.swift to something else and use the `@main` attribute on the struct conforming to `ParsableCommand`, instead of calling its `main` function.
https://apple.github.io/swift-argument-parser/documentation/argumentparser/asyncparsablecommand/