847eb825d897 — QuintillusCFC tip 5 years ago
Add another Gopher recipe vault.
M src/main/java/com/ajtjp/gopherarchiver/Gopher.java +2 -2
@@ 30,8 30,8 @@ public class Gopher {
     }
     
     public Gopher() throws IOException, InterruptedException {
-        String outputDir = "C:\\GopherTest";
-        burrow(ReferenceURLs.indianRecipes, outputDir);
+        String outputDir = "C:\\GopherRecipesII";
+        burrow(ReferenceURLs.recipesII, outputDir);
     }
     
     public void burrow(GopherURL gopherHole, String outputDir) throws IOException, InterruptedException {

          
M src/main/java/com/ajtjp/gopherarchiver/ReferenceURLs.java +1 -0
@@ 10,4 10,5 @@ public class ReferenceURLs {
     static GopherURL floodgap = new GopherURL("66.166.122.165", 70, "");
     static GopherURL sdf = new GopherURL("sdf.org", 70, "");
     static GopherURL indianRecipes = new GopherURL("sdf.org", 70, "/users/sanjuro/indian-food");
+    static GopherURL recipesII = new GopherURL("gopher.black", 70, "/recipebox");
 }