blob: 74833d38fcf0bdc0e4fc98973b3a9665a4dccc60 [file] [log] [blame]
package gate
import (
"context"
"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"
}