summaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/prickly/Main.java
blob: dcf64357324b28fb68527d82425362a7ea6ce4ae (plain)
1
2
3
4
5
6
7
8
9
10
/* (C) 2025 Linnea Gräf - Licensed to everyone under the BSD 3 Clause License */
package moe.nea.prickly;

import moe.nea.prickly.server.Server;

public class Main {
	public static void main(String[] args) {
		new Server().start();
	}
}