Move MapleArrowFetcher to the main module
This commit is contained in:
12
src/main/java/tools/mapletools/ToolConstants.java
Normal file
12
src/main/java/tools/mapletools/ToolConstants.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package tools.mapletools;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class ToolConstants {
|
||||
public static final File INPUT_DIRECTORY = new File("tools/input");
|
||||
public static final File OUTPUT_DIRECTORY = new File("tools/output");
|
||||
|
||||
public static File getOutputFile(String fileName) {
|
||||
return new File(OUTPUT_DIRECTORY, fileName);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user