Probably a very noob question, sorry about that. I have a monorepo structured like this:
api/
|-deps.edn
|-src/
|-api/
|-core.clj
|-resource_1.csv
library/
|-deps.edn
|-src/
|-library/
|-core.clj
|-resource_2.csv
deps.edn of the api uses library as local dependency. Both of them use static information from respective csv files.
My question is how do I correctly include the static files when compiling the api uberjar, and how do I correctly use the static files within the code?
The api does not have any endpoints where it's serving the static files. They're used inside the code for caclulations.