Fully migrate homes commands

This commit is contained in:
Aria 2023-02-27 16:12:39 -07:00
parent f27c76f334
commit 603952e185
15 changed files with 99 additions and 80 deletions

View file

@ -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);
}
}