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(); } }