Fully migrate homes commands
This commit is contained in:
parent
f27c76f334
commit
603952e185
15 changed files with 99 additions and 80 deletions
|
@ -0,0 +1,18 @@
|
|||
package dev.zontreck.essentials.util;
|
||||
|
||||
import java.nio.file.Path;
|
||||
|
||||
import dev.zontreck.libzontreck.util.FileTreeDatastore;
|
||||
|
||||
public class EssentialsDatastore extends FileTreeDatastore
|
||||
{
|
||||
public static final Path AEBASE;
|
||||
static{
|
||||
AEBASE = FileTreeDatastore.of("essentials");
|
||||
}
|
||||
|
||||
public static Path of(String path)
|
||||
{
|
||||
return AEBASE.resolve(path);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue