第三方api接口
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.

10 lines
342 B

  1. package gzmiyuan
  2. import (
  3. zhios_third_party_utils "code.fnuoos.com/go_rely_warehouse/zyos_go_third_party_api.git/utils"
  4. )
  5. func SendReq(urls string, params map[string]string) ([]byte, error) {
  6. return zhios_third_party_utils.CurlPost(urls, zhios_third_party_utils.Serialize(params), map[string]string{"content-type": "application/json"})
  7. }