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

8 lines
182 B

  1. package cinema_5bms
  2. func GetCinema(method string, signSecret string, args map[string]string) (string, error) {
  3. post, err := SendPost(method, signSecret, args)
  4. return post, err
  5. }