Merge from remote branch

This commit is contained in:
yaling888
2021-08-05 00:49:17 +08:00
committed by GitHub
9 changed files with 149 additions and 79 deletions

7
constant/listener.go Normal file
View File

@ -0,0 +1,7 @@
package constant
type Listener interface {
RawAddress() string
Address() string
Close() error
}