Files
MWClash/test/command_test.dart
chen08209 b20d9edec2 Fix url validate issues
Fix check ip performance problem

Optimize resources page
2024-07-07 13:37:08 +08:00

11 lines
229 B
Dart

// ignore_for_file: avoid_print
import 'package:fl_clash/common/common.dart';
void main() async {
print("https://pqjc.site:10000/test.ymal".isUrl);
print("abcd".isUrl);
print("http://10.31.1.221:8848/cfa.yaml".isUrl);
}