11 lines
No EOL
305 B
Scala
11 lines
No EOL
305 B
Scala
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())
|
|
}
|
|
} |