# EventBus **Repository Path**: melojustme/EventBus ## Basic Information - **Project Name**: EventBus - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-01-12 - **Last Updated**: 2022-04-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 发布订阅服务 ``` ├── README.md ├── cmd │ └── broker │ ├── config │ │ └── config.go │ ├── etc │ │ └── config.yaml │ └── main.go ├── event │ ├── LICENSE │ ├── README.md │ ├── client.go │ ├── event_bus.go │ ├── event_bus_test.go │ ├── grpc_bus.go │ ├── network_bus.go │ ├── network_bus_test.go │ └── server.go ├── examples │ ├── pub_service_test.go │ └── sub_client_test.go ├── go.mod ├── go.sum ├── proto │ ├── publish.pb.go │ └── publish.proto ├── protoc.sh └── pubsub ├── event.go └── publisher.go ``` ## 镜像制作 ``` docker build -t eventbus:v1 -f Dockerfile . docker tag 25dcab325522 eventbus:v2 ```