From 3e8e321c73978865939b72805fef1aebfc8edc47 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 9 Jan 2025 09:56:47 +0100 Subject: [PATCH] Created the Colibri command. --- Sources/Colibri.swift | 12 ++++++++++++ Sources/main.swift | 4 ---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 Sources/Colibri.swift delete mode 100644 Sources/main.swift diff --git a/Sources/Colibri.swift b/Sources/Colibri.swift new file mode 100644 index 0000000..a9a5b9f --- /dev/null +++ b/Sources/Colibri.swift @@ -0,0 +1,12 @@ +import ArgumentParser + +@main +struct Colibri: AsyncParsableCommand { + + // MARK: Functions + + func run() async throws { + // ... + } + +} diff --git a/Sources/main.swift b/Sources/main.swift deleted file mode 100644 index 44e20d5..0000000 --- a/Sources/main.swift +++ /dev/null @@ -1,4 +0,0 @@ -// The Swift Programming Language -// https://docs.swift.org/swift-book - -print("Hello, world!")