refactoring

This commit is contained in:
2025-04-14 23:39:31 +02:00
parent f3ca94c97e
commit 06443d7efa
31 changed files with 140 additions and 185 deletions
@@ -0,0 +1,22 @@
package eventDemo.configuration
import eventDemo.app.GameEventReactionListener
import io.ktor.server.application.Application
import org.koin.ktor.ext.get
fun Application.configure() {
configureKoin()
configureSecurity()
configureSerialization()
configureSockets()
configureWebSocketsGameRoute(get(), get())
configureHttp()
configureHttpRouting()
GameEventReactionListener(get(), get())
.init()
}