tldr/pages.zh/common/kitex.md

22 lines
694 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# kitex
> Kitex 是 Go RPC 框架 Kitex 框架提供的用于生成代码的一个命令行工具。
> 目前kitex 支持 thrift 和 protobuf 的 IDL并支持生成一个服务端项目的骨架。
> 更多信息:<https://www.cloudwego.io>.
- 生成客户端代码,项目在 `$GOPATH` 目录下:
`kitex {{路径/到/IDL文件.thrift}}`
- 生成客户端代码,项目不在 `$GOPATH` 目录下:
` kitex -module {{github.com/xx-org/xx-name}} {{路径/到/IDL文件.thrift}}`
- 根据 protobuf IDL 文件生成客户端代码:
`kitex -type protobuf {{路径/到/IDL文件.proto}}`
- 生成服务端代码:
`kitex -service {{svc_name}} {{路径/到/IDL文件.thrift}}`