8 lines
255 B
Dart
Raw Normal View History

2024-11-28 14:57:49 +08:00
class IpConstant {
// 上报时需要排除的ip
static const List<String> reportExcludeIp = ['127.0.0.1','::1%1','::1'];
2024-11-28 14:57:49 +08:00
static const String udpUrl = 'udp://';
static const String tcpUrl = 'tcp://';
static const String httpsUrl = 'https://';
}