pack.go 133 Bytes
package pack

const (
	PayUrl = "/api/v1/pay/"
)

// 卡拉卡统一支付
func PayUrlPacking(s string) string {
	return PayUrl + s
}