Files
MWClash/test/command_test.dart

11 lines
229 B
Dart
Raw Normal View History

2024-04-30 23:38:49 +08:00
// ignore_for_file: avoid_print
import 'package:fl_clash/common/common.dart';
2024-05-31 09:59:18 +08:00
void main() async {
2024-05-31 09:59:18 +08:00
print("https://pqjc.site:10000/test.ymal".isUrl);
print("abcd".isUrl);
print("http://10.31.1.221:8848/cfa.yaml".isUrl);
2024-04-30 23:38:49 +08:00
}
2024-05-31 09:59:18 +08:00