Change EventBus to Bus

This commit is contained in:
2025-04-14 23:39:55 +02:00
parent cd320b31da
commit 908cc888ad
4 changed files with 13 additions and 15 deletions
@@ -1,11 +1,10 @@
package eventDemo.adapter.infrastructureLayer.event
import eventDemo.business.entity.GameId
import eventDemo.business.event.GameEventBus
import eventDemo.business.event.event.GameEvent
import eventDemo.libs.event.EventBus
import eventDemo.libs.event.EventBusInMemory
import eventDemo.libs.bus.Bus
import eventDemo.libs.bus.BusInMemory
class GameEventBusInMemory :
GameEventBus(),
EventBus<GameEvent, GameId> by EventBusInMemory()
Bus<GameEvent> by BusInMemory()