diff --git a/Sources/ContainerComposeApp/application.swift b/Sources/ContainerComposeApp/application.swift index c6bdb74c..9fc9eb6f 100644 --- a/Sources/ContainerComposeApp/application.swift +++ b/Sources/ContainerComposeApp/application.swift @@ -6,13 +6,10 @@ // import ContainerComposeCore -import ArgumentParser @main -struct Application: AsyncParsableCommand { - @Argument(parsing: .captureForPassthrough) var args: [String] - - func run() async throws { - await Main.main(args) +struct Application { + static func main() async { + await Main.main() } }