ISource.cs 349 B

123456789101112131415
  1. using Common;
  2. using LitJson;
  3. namespace Feign
  4. {
  5. public class ISource
  6. {
  7. public static string SyncAppCodeTemplate()
  8. {
  9. string url = Utils.FeignUrl["omega_source"] + "/v1/omega_source/AppModule/sycnAppModule";
  10. string content = Function.GetWebRequest(url);
  11. return content;
  12. }
  13. }
  14. }