| 123456789101112131415161718192021 |
- package com.weEat.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 ViewController @Inject()(
- val controllerComponents: ControllerComponents
- ) (implicit
- val webJarsUtil: org.webjars.play.WebJarsUtil
- ) extends BaseController {
- def loader() = Action { implicit request: Request[AnyContent] =>
- Ok(views.html.viewLoader())
- }
- }
|