forked from p93542168/wheat-cache
20 lines
319 B
Go
20 lines
319 B
Go
package external
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"gitee.com/wheat-os/wheatCache/pkg/proto"
|
|
"github.com/golang/mock/gomock"
|
|
)
|
|
|
|
var (
|
|
oneGatewayClient sync.Once
|
|
gatewayClient proto.CommServerClient
|
|
)
|
|
|
|
var (
|
|
GateWayCtrl *gomock.Controller
|
|
mockGatewayClient proto.CommServerClient
|
|
oneMockGatewayClient sync.Once
|
|
)
|