mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-18 20:09:37 -04:00
add missing files
This commit is contained in:
parent
c6ece486ed
commit
9ef8b42509
239 changed files with 20558 additions and 51 deletions
common/src/main/java/io/bitsquare/app
19
common/src/main/java/io/bitsquare/app/ProgramArguments.java
Normal file
19
common/src/main/java/io/bitsquare/app/ProgramArguments.java
Normal file
|
@ -0,0 +1,19 @@
|
|||
package io.bitsquare.app;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
// TODO too app specific for common...
|
||||
public class ProgramArguments {
|
||||
// program arg names
|
||||
public static final String TOR_DIR = "torDir";
|
||||
public static final String USE_LOCALHOST = "useLocalhost";
|
||||
public static final String DEV_TEST = "devTest";
|
||||
|
||||
|
||||
public static final String NAME_KEY = "node.name";
|
||||
public static final String PORT_KEY = "node.port";
|
||||
|
||||
|
||||
private static final Logger log = LoggerFactory.getLogger(ProgramArguments.class);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue