spm-swift-package 0.13.2

Command Line Tools for macOS to create project in Swift Package Manager with desirable files.
Documentation
mod cli;
mod core;
mod header;
mod ui;
mod utils;

use clap::Parser;
use cli::Args;

/// Entry point of the application
/// Uses Tokio runtime to support async operations in the CLI flow
#[tokio::main]
async fn main() {
	let args = Args::parse();
	if let Err(e) = cli::run(args).await {
		eprintln!("Error: {e}");
		std::process::exit(1);
	}
}