CAICAIIs opened a new issue, #3172:
URL: https://github.com/apache/dubbo-go/issues/3172

    Background
   `GenericService` is currently located in `config/generic/`, but it is 
actually a **service definition** for generic invocation, not a configuration.
   Placing it under `config/` is inappropriate because:
   1. `GenericService` is an RPC service struct, not a configuration item
   2. It's separated from the generic invocation logic in `filter/generic/` 
(filter, generalizer), which increases cognitive overhead
   3. The `config/` directory should only contain configuration-related code
    
   Current References
   - `client/client.go` - `NewGenericService` method
   - `config/reference_config.go` - legacy configuration approach
   
   Proposal
   Move `config/generic/generic_service.go` to `filter/generic/service.go` to 
consolidate all generic invocation related code in one place.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to