14 lines
246 B
Go
14 lines
246 B
Go
package modules
|
|
|
|
import (
|
|
"github.com/liwei1dao/lego/core"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
type (
|
|
IModule interface {
|
|
core.IModule
|
|
SendMsgToAgent(GatewayServiceId, SessionId, ServiceMethod string, msg proto.Message) (err error)
|
|
}
|
|
)
|