configs.dart 448 B

12345678910111213141516171819
  1. class Configs {
  2. Configs._();
  3. //官网
  4. static const String officialWebsiteEmail = "[email protected]";
  5. static const String officialWebsiteHttp = "https://www.fkey.win";
  6. // 调试相关
  7. static var debug = true;
  8. static var assetUrl = "https://res.golink.dev";
  9. static var websiteUrl = "https://www.fkey.win";
  10. // 内核使用
  11. static const String appName = 'NOMO VPN';
  12. // api使用
  13. static const String productCode = "nomo";
  14. }