Implemented the UpdateCommand command in the executable target.

This commit is contained in:
2025-02-19 01:09:12 +01:00
parent 26a5e4232a
commit 97467f2ed8
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,13 @@
import ArgumentParser
import ColibriLibrary
extension Colibri.Update {
struct Options: ParsableArguments, Locationable {
// MARK: Properties
@Option(name: .shortAndLong)
var location: String?
}
}