AlexStocks commented on a change in pull request #59:
URL: https://github.com/apache/dubbo-go-samples/pull/59#discussion_r588356761
##########
File path: direct/README.md
##########
@@ -0,0 +1,156 @@
+# Direct Example
+
+### Backend
+
+In the development and testing environment, it is often necessary to bypass
the registry and test the designated service provider, which may require
point-to-point direct connection. The point-to-point direct connection method
will be based on the service interface and ignore the list of providers in the
registry. Interface A is configured point-to-point and does not affect
interface B to get the list from the registry.
+
+This example provides the `Consumer` point-to-point direct connection
`Provider` based on Dubbo-Go to complete service calls to help better
understand the connectivity of Dubbo-Go.
+
+### Introduction
+
+```
+├── go-client
+│ ├── cmd
+│ ├── conf
+│ └── pkg
+└── go-server
+ ├── cmd
+ ├── conf
+ ├── docker
+ ├── pkg
+ └── tests
+ └── integration
+```
+- go-server: The Service Provider
+- go-client: The Service Consumer
+
+#### Provider
+Direct example code description:
+
+1. Configure the Dubbo protocol, registry, service information, See
[server.yml](go-server/conf/server.yml)
+```yaml
Review comment:
pls add a blank line btw line 30 and line 31
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]