Start with core
[tbgof.git] / src / main / java / net / pterodactylus / tbgof / core / Core.java
1 package net.pterodactylus.tbgof.core;
2
3 import com.google.common.util.concurrent.AbstractIdleService;
4
5 /**
6  * The core of TBGOF.
7  *
8  * @author <a href="mailto:d.roden@xplosion.de">David Roden</a>
9  */
10 public class Core extends AbstractIdleService {
11
12     @Override
13     protected void startUp() throws Exception {
14     }
15
16     @Override
17     protected void shutDown() throws Exception {
18     }
19
20 }