aboutsummaryrefslogtreecommitdiff
path: root/src/Main.java
blob: a60d0661f68b7c750350f1b6027d065a6bfcd06e (plain)
1
2
3
4
5
6
7
8
9
10
11
import org.traccar.Server;

public class Main {

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

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