diff --git a/App/Sources/App.swift b/App/Sources/App.swift index 77ab0fe..cc558b8 100644 --- a/App/Sources/App.swift +++ b/App/Sources/App.swift @@ -11,8 +11,12 @@ struct App: AsyncParsableCommand { // MARK: Functions mutating func run() async throws { - let builder = AppBuilder(name: "DocCRepo") - let app = try await builder(options) + let appBuilder = AppBuilder( + appName: "Doxy", + archivesFolder: "Resources/Archives" + ) + + let app = try await appBuilder(options) try await app.runService() } diff --git a/App/Sources/AppOptions.swift b/App/Sources/Options/AppOptions.swift similarity index 100% rename from App/Sources/AppOptions.swift rename to App/Sources/Options/AppOptions.swift