install git.apache.org/thrift.git/lib/go/thrift
go get git.apache.org/thrift.git/lib/go/thrift
├── README.md └── thrift ├── handler │ ├── user.go │ └── user_test.go ├── idl │ ├── Base.thrift │ ├── Req.thrift │ ├── Resp.thrift │ └── UserService.thrift └── proto ├── base │ ├── Base-consts.go │ ├── Base.go │ └── GoUnusedProtection__.go ├── req │ ├── GoUnusedProtection__.go │ ├── Req-consts.go │ └── Req.go ├── resp │ ├── GoUnusedProtection__.go │ ├── Resp-consts.go │ └── Resp.go └── userservice ├── GoUnusedProtection__.go ├── UserService-consts.go └── UserService.go