blob: 9d656d7d132a0c544207a55d2f482d01ffcd6e7d [file] [log] [blame]
package gate
import (
"context"
)
import (
"github.com/apache/dubbo-go-samples/game/pkg/pojo"
)
type BasketballService struct {
Send func(ctx context.Context, uid string, data string) (*pojo.Result, error)
}
func (p *BasketballService) Reference() string {
return "gateConsumer.basketballService"
}