feat: Add logging to Gateway for pod synchronization and startup events

This commit is contained in:
2026-01-07 14:54:26 +01:00
parent bbbbf33c41
commit 6ef7401443
3 changed files with 9 additions and 2 deletions

View File

@@ -1,9 +1,10 @@
package modules
import com.google.inject.AbstractModule
import logic.Gateway
class GatewayModule extends AbstractModule {
override def configure(): Unit = {
bind(classOf[GatewayModule]).asEagerSingleton()
bind(classOf[Gateway]).asEagerSingleton()
}
}