优惠券rpc数据结构及方法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
472 B

package couponrpc
import (
"git.tetele.net/tgo/conf"
)
const DES_KEY = "conaapon"
func rpc_server_conn(url ...string) (*CouponServiceClient, error) {
var rpc_url string
if len(url) > 0 && url[0] != "" {
rpc_url = url[0]
} else if conf.COUPON_RPC_URL != "" {
rpc_url = conf.COUPON_RPC_URL
} else {
rpc_url = "127.0.0.1:" + conf.COUPON_RPC_PORT
}
conn, _, err := DialCouponService("tcp", rpc_url)
if err != nil {
return nil, err
}
return conn, nil
}