package controllers import javax.inject._ import play.api.mvc._ @Singleton class AsteroidGameController @Inject()(val controllerComponents: ControllerComponents) extends BaseController { def game(): Action[AnyContent] = Action { implicit request: Request[AnyContent] => Ok(views.html.game()) } }