Start with core
[tbgof.git] / src / main / java / net / pterodactylus / tbgof / core / Core.java
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 (file)
index 0000000..3fbb547
--- /dev/null
@@ -0,0 +1,20 @@
+package net.pterodactylus.tbgof.core;
+
+import com.google.common.util.concurrent.AbstractIdleService;
+
+/**
+ * The core of TBGOF.
+ *
+ * @author <a href="mailto:d.roden@xplosion.de">David Roden</a>
+ */
+public class Core extends AbstractIdleService {
+
+    @Override
+    protected void startUp() throws Exception {
+    }
+
+    @Override
+    protected void shutDown() throws Exception {
+    }
+
+}