commit initial

This commit is contained in:
François Pelletier 2024-09-08 20:37:07 -04:00
commit f7abfc4902
23 changed files with 432 additions and 0 deletions

View file

@ -0,0 +1,11 @@
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())
}
}

View file

@ -0,0 +1,24 @@
package controllers
import javax.inject._
import play.api._
import play.api.mvc._
/**
* This controller creates an `Action` to handle HTTP requests to the
* application's home page.
*/
@Singleton
class HomeController @Inject()(val controllerComponents: ControllerComponents) extends BaseController {
/**
* Create an Action to render an HTML page.
*
* The configuration in the `routes` file means that this method
* will be called when the application receives a `GET` request with
* a path of `/`.
*/
def index(): Action[AnyContent] = Action { implicit request: Request[AnyContent] =>
Ok(views.html.index())
}
}