>From your first question, it appears that you have never used Go before. I would start with the intro tutorial: A Tour of Go <https://go.dev/tour/>. Other resources and tutorials on the official documentation page <https://go.dev/doc/> might also be helpful.
I would also note that the thrift-iterator source <https://github.com/thrift-iterator/go> is not being actively maintained, as the last change was 4 years ago. It also does not appear to have a go.mod file, which is now more-or less required. So you may need to fork it and add one. On Wednesday, June 8, 2022 at 2:35:14 PM UTC-4 1vaishna...@gmail.com wrote: > Hi all! > > I'm working on a project in golang, where I have to convert a thrift > string into json. I came across thrifter package. thrift-iterator > <https://pkg.go.dev/github.com/thrift-iterator/go#ToJSON>. > Please help me write > 1) How to import? > 2) Import external dependencies using bazel > 3) Also, does thrifter.ToJSON recursively includes other thrift files from > the given thrift file. > like: > *xyz.thrift file:* > namespace > include"abc.thrift" > - > - > > Will abc will also be included when converting xyz.thrift file into json, > while using thrift.ToJSON. > > If there exist some another method to convert thrift into json in golang > please let me know. > Please help. Thanks a lot > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/9f915102-56cb-4943-9f2c-ff8af7e8df24n%40googlegroups.com.