init, thx MrExtremez

This commit is contained in:
Nicola Paolucci
2019-06-18 15:04:35 -04:00
commit ea51313125
2488 changed files with 150207 additions and 0 deletions
@@ -0,0 +1,26 @@
package org.apollo.jagcached;
/**
* 2006Redone Development
*
* @author Ryley Kimmel <ryley.kimmel@live.com>
* Jul 9, 2013
* Constants.java
*
* @see java.lang.Object
*/
public final class Constants {
/**
* The directory of the file system.
*/
public static final String FILE_SYSTEM_DIR = "./cache/";
/**
* Default private constructor to prevent instantiation.
*/
private Constants() {
super();
}
}