Evgeny Bovykin
Evgeny Bovykin
@Millione After exploring the code a bit more, I realized that we could use `Context#mode` + `Context#item_path` to get all the required information to locate the files. But `mode` is...
@Millione Hi. Splitting `service_ImageService` requires more work than I originally anticipated, basically re-writing all the logic from `pilota` again in `volo`. Considering all the other splitting, I'd think if it's...
@Millione you are right, it would be inconsistent. Is the service name deduplication needed here as well? Can there be 2 services named `articleService` and `ArticleService` in the `rpc_article/src/article` module...
@Millione I added the functionality to split the services generated by `volo` into several files. Let me know if this splitting is enough or if we should split it into...
There are also so more changes to `pilota` required, so I'm using a custom branch `fix/context-mode-pub` from my repo `https://github.com/missingdays/pilota`. We can make all the changes there and then merge...
> As for this, you can refer to cx.names(def_id), if its name duplicates, it will return true. The deduplication has to check all the names, not just the current one....
Thanks, I see your point. However, we need to know how to deduplicate. If for both `ArticleService` and `articleService` we get true, how to know for which service to generate...
@Millione Yeah sorry, I've been busy most of the last week. I think only deduplication of the folders is left to be implemented? If you could implement it, that would...
@Millione Nice! > I think there is only some detailed code style to change. I'm ready to fix them if you have any comments.