wip on customizing bundle

This commit is contained in:
Zlatin Balevsky
2021-03-20 14:54:52 +00:00
parent cd2196f5df
commit f006ef782d
3 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package net.i2p.router;
import java.io.*;
public class MacLauncher {
public static void main(String[] args) throws Exception {
var here = new File(".");
System.out.println("I'm in " + here.getAbsolutePath());
}
}