Reviewed-on: #22 Co-authored-by: Janis <janis.e.20@gmx.de> Co-committed-by: Janis <janis.e.20@gmx.de>
14 lines
369 B
Scala
14 lines
369 B
Scala
package components
|
|
|
|
import controllers.WebUI
|
|
import de.knockoutwhist.components.DefaultConfiguration
|
|
import de.knockoutwhist.ui.UI
|
|
import de.knockoutwhist.utils.events.EventListener
|
|
|
|
class WebApplicationConfiguration extends DefaultConfiguration {
|
|
|
|
override def uis: Set[UI] = super.uis + WebUI
|
|
override def listener: Set[EventListener] = super.listener + WebUI
|
|
|
|
}
|