8 lines
249 B
Dart

class IpConstant {
// 上报时需要排除的ip
static const List<String> reportExcludeIp = ['127.0.0.1','::1%1'];
static const String udpUrl = 'udp://';
static const String tcpUrl = 'tcp://';
static const String httpsUrl = 'https://';
}