13 lines
159 B
Swift
13 lines
159 B
Swift
import ArgumentParser
|
|
|
|
@main
|
|
struct Colibri: AsyncParsableCommand {
|
|
|
|
// MARK: Functions
|
|
|
|
func run() async throws {
|
|
// ...
|
|
}
|
|
|
|
}
|