Peter Kieltyka
Peter Kieltyka
completed in https://github.com/webrpc/webrpc/pull/229
btw, here is another cool format to look at https://github.com/apple/pkl
can you give a pseudo example of what you're thinking in the RIDL and we can think how it fits / if we can support it easily?
added PR https://github.com/webrpc/webrpc/pull/229 which includes only the rpc method succinct form support
Some work has been done in https://github.com/webrpc/webrpc/pull/227 -- however, please see PR comments which requires more work on an approach which won't require any changes to generators (which is what...
Thanks. The JsonWrapper worked. I tried to write a JsonString class using your example as so: ``` ruby class JsonString < String def initialize(json_string) @json_string = json_string super(json_string) end def...
The use case would be to upload an entire directory in a single 'put' command. Ie. say I don't know the exact contents at that stage, and don't really need...