Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 1.06 KB

README.md

File metadata and controls

39 lines (33 loc) · 1.06 KB

A Thrift Demo

https://qiknow.com/

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