# gfmicro 一个简单方便的微服务架构。 基于:GO-GRPC + GRPC-GATEWAY + GoFrame 微服务项目 ### 技术栈 RPC:[gRPC](google.golang.org/grpc) Restful Api:[Grpc Gateway](https://github.com/grpc-ecosystem/grpc-gateway) 基础类库:[GoFrame](https://github.com/gogf/gf) [GF开发文档](https://goframe.org/index) ### 微服务应用目录说明 ``` ├── client ├── cmd ├── config │   ├── certs │   └── config.toml ├── proto │   ├── c.sh │   ├── google └── server ├── hello.go └── server.go ``` - config/certs:证书凭证 - client:客户端 - cmd:命令行 - pkg:第三方公共模块 - proto:protobuf的一些相关文件(含.proto、pb.go、.pb.gw.go),google/api中用于存annotations.proto、http.proto - server:服务端