aboutsummaryrefslogtreecommitdiff
path: root/src/Main.java
blob: 93325931802474773f347f26d3b934bf82b48882 (plain)
1
2
3
4
5
6
7
8
9
10
11
import net.sourceforge.opentracking.Server;

public class Main {

    public static void main(String[] args) throws Exception {

        Server service = new Server();
        service.init(args);
        service.start();
    }
}