Template support for input parameters #4

Merged
javier merged 81 commits from feature/arguments-templating into main 2025-02-17 22:11:06 +00:00
3 changed files with 48 additions and 7 deletions
Showing only changes of commit db1df0ec62 - Show all commits

View File

@ -1,13 +1,13 @@
import ArgumentParser
import ColibriLibrary
@main
struct Colibri: AsyncParsableCommand {
// MARK: Functions
func run() async throws {
// ...
}
// MARK: Properties
static let configuration = CommandConfiguration(
abstract: "The utility to manage your Hummingbird projects",
subcommands: [Create.self]
)
}

View File

@ -0,0 +1,41 @@
import ArgumentParser
import ColibriLibrary
extension Colibri {
struct Create: AsyncParsableCommand {
// MARK: Properties
static let configuration = CommandConfiguration(
commandName: "create project",
abstract: "Create a new, tailored Colibri project.",
helpNames: .shortAndLong,
aliases: ["create"]
)
@OptionGroup var options: Options
// MARK: Functions
mutating func run() async throws {
}
}
}
// MARK: - Options
extension Colibri.Create {
struct Options: ParsableArguments {
// MARK: Properties
@Option(name: .shortAndLong)
var name: String
@Option(name: .shortAndLong)
var location: String?
}
}

View File

@ -11,6 +11,6 @@ extension URL {
static let someExistingFile = URL(at: "/some/existing/file")
static let someNewFolder = URL(at: "/some/new/folder")
static let someNewFile = URL(at: "/some/new/file")
static let someRandomURL = URL(string: "some.random.url")!
static let someRandomURL = URL(string: "http://some.random.url")!
}