X-Git-Url: https://git.pterodactylus.net/?p=tbgof.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ftbgof%2Fcore%2FCore.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ftbgof%2Fcore%2FCore.java;h=3fbb54769d168c1f8122124da9bc90e423c6531c;hp=0000000000000000000000000000000000000000;hb=0428deb0f9c6399318eddd1caa38e3a1bf1e590f;hpb=393f89f40446d86f97afefef3f7c71ec40ab0321 diff --git a/src/main/java/net/pterodactylus/tbgof/core/Core.java b/src/main/java/net/pterodactylus/tbgof/core/Core.java new file mode 100644 index 0000000..3fbb547 --- /dev/null +++ b/src/main/java/net/pterodactylus/tbgof/core/Core.java @@ -0,0 +1,20 @@ +package net.pterodactylus.tbgof.core; + +import com.google.common.util.concurrent.AbstractIdleService; + +/** + * The core of TBGOF. + * + * @author David Roden + */ +public class Core extends AbstractIdleService { + + @Override + protected void startUp() throws Exception { + } + + @Override + protected void shutDown() throws Exception { + } + +}