send_url.go 543 B

12345678910
  1. package config
  2. type SendUrl struct {
  3. ComputerSendUrl string `mapstructure:"computer-send-url" json:"computer-send-url" yaml:"computer-send-url"`
  4. KeyWordSendUrl string `mapstructure:"keyword-send-url" json:"keyword-send-url" yaml:"keyword-send-url"`
  5. SendUrlOne string `mapstructure:"send-url-one" json:"send-url-one" yaml:"send-url-one"`
  6. GetUrlArpu string `mapstructure:"get-url-arpu" json:"get-url-arpu" yaml:"get-url-arpu"`
  7. TxSendMobile string `mapstructure:"tx-send-mobile" json:"tx-send-mobile" yaml:"tx-send-mobile"`
  8. }