package userCloud import ( "fmt" hbtp "github.com/mgr9525/HyperByte-Transfer-Protocol" gocloud "github.com/mgr9525/go-cloud" ) const ( RPCHostCode = 2 ) func NewReq(method string, ipr ...string) (*hbtp.Request, error) { host := fmt.Sprintf("%v", gocloud.CloudConf.Custom["sysHbtpHost"]) return hbtp.NewDoReq(host, RPCHostCode, method, ipr...) } func DoJson(method string, in, out interface{}, hd ...map[string]interface{}) error { host := fmt.Sprintf("%v", gocloud.CloudConf.Custom["sysHbtpHost"]) return hbtp.DoRPCJson(host, RPCHostCode, method, in, out, hd...) } func DoString(method string, in interface{}, hd ...hbtp.Mp) (int, []byte, error) { host := fmt.Sprintf("%v", gocloud.CloudConf.Custom["sysHbtpHost"]) return hbtp.DoRPCString(host, RPCHostCode, method, in, hd...) }