M_ServerURL.lua 336 B

12345678910111213141516
  1. M_ServerURL = {}
  2. function M_ServerURL:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_ServerURL:init()
  9. self.datas = {}
  10. self.datas["SendCode"] = {ID = "SendCode", URL = "172.21.0.17:26012"}
  11. self.datas["IDCard"] = {ID = "IDCard", URL = "123.207.170.249:4676"}
  12. end
  13. M_ServerURL:init()