Reviewed-on: #34 Co-authored-by: Janis <janis.e.20@gmx.de> Co-committed-by: Janis <janis.e.20@gmx.de>
13 lines
315 B
Scala
13 lines
315 B
Scala
package components
|
|
|
|
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] = Set()
|
|
override def listener: Set[EventListener] = Set()
|
|
|
|
}
|