refactor: server

This commit is contained in:
2025-03-31 22:40:36 +02:00
parent f0ea538c21
commit 8599c14979
4 changed files with 72 additions and 47 deletions

View File

@@ -46,7 +46,7 @@ task runServer(type: JavaExec) {
group = 'application'
mainClass = application.mainClass
classpath = sourceSets.main.runtimeClasspath
args = ['server']
args = ['--server']
}
task runClient(type: JavaExec) {
@@ -54,5 +54,5 @@ task runClient(type: JavaExec) {
group = 'application'
mainClass = application.mainClass
classpath = sourceSets.main.runtimeClasspath
args = ['client']
args = ['--client']
}