first commit

This commit is contained in:
T00700
2022-12-02 13:36:22 +08:00
commit 236efd9a7f
1515 changed files with 326020 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
package com.github.catvod.crawler;
import java.util.HashMap;
public class SpiderUrl {
public static SpiderUrl Empty = new SpiderUrl();
public String url = "";
public HashMap<String, String> headers = new HashMap<>();
public SpiderUrl() {
}
public SpiderUrl(String url, HashMap<String, String> headers) {
this.url = url;
if (headers != null)
this.headers = headers;
}
}