This PR contains the work done to setup the *executable*, *library*, and *test* targets for the Swift package. In addition, some boilerplate code has been removed. Reviewed-on: #1 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
14 lines
181 B
Swift
14 lines
181 B
Swift
import ArgumentParser
|
|
import ColibriLibrary
|
|
|
|
@main
|
|
struct Colibri: AsyncParsableCommand {
|
|
|
|
// MARK: Functions
|
|
|
|
func run() async throws {
|
|
// ...
|
|
}
|
|
|
|
}
|