-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
Description
by damoxc:
I'm currently attempting to implement an existing API using the built-in go rpc package and stumbled at not being able to keep the same method names as before they were in the form: core.hello_world and as far as I can tell it's only possible to have with the the go rpc package: core.HelloWorld The attached patch adds support to method aliasing to the rpc server in a very naive and simple way. Feel free to ignore this completely!