liuxiaolong
2020-12-29 c1b804b45eaa3b5c325a36ab7fcdb6b09b8cdfd4
1
2
3
4
5
6
7
8
package mc
 
type MicroFunc func(req *Request) *Reply
 
 
type Transport interface {
    RequestTopic(string, Request) (*Reply,error)
}