Integrated the ArchiveController controller into the router inside the "router(logger: )" private function of the AppBuilder builder in the library target.

This commit is contained in:
Javier Cicchelli 2025-03-10 01:58:33 +01:00
parent ac99447836
commit 16712821d8

View File

@ -79,6 +79,8 @@ private extension AppBuilder {
DocCMiddleware(archivesFolder) DocCMiddleware(archivesFolder)
} }
ArchiveController().register(to: router)
return router return router
} }