diff --git a/App/Sources/App.swift b/App/Sources/App.swift index b3bc2a7..7b2e783 100644 --- a/App/Sources/App.swift +++ b/App/Sources/App.swift @@ -1,8 +1,7 @@ import ArgumentParser import DoxyLibrary -@main -struct App: AsyncParsableCommand { +@main struct Doxy: AsyncParsableCommand { // MARK: Properties diff --git a/App/Sources/Options/AppOptions.swift b/App/Sources/Options/AppOptions.swift index a107f02..80db7d7 100644 --- a/App/Sources/Options/AppOptions.swift +++ b/App/Sources/Options/AppOptions.swift @@ -2,7 +2,7 @@ import ArgumentParser import DoxyLibrary import Logging -extension App { +extension Doxy { struct Options: AppArguments, ParsableArguments { // MARK: Properties diff --git a/Package.swift b/Package.swift index db07776..836a02c 100644 --- a/Package.swift +++ b/Package.swift @@ -9,7 +9,7 @@ let package = Package( .macOS(.v14) ], products: [ - .executable(name: "App", targets: ["DoxyApp"]) + .executable(name: "doxy", targets: ["DoxyApp"]) ], dependencies: [ .package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.3.0"),