You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
332 B

4 years ago
  1. package com.example.playscalajsreact.controllers
  2. import javax.inject._
  3. import com.example.playscalajsreact.shared.SharedMessages
  4. import play.api.mvc._
  5. @Singleton
  6. class Application @Inject()(cc: ControllerComponents) extends AbstractController(cc) {
  7. def index = Action {
  8. Ok(views.html.index(SharedMessages.itWorks))
  9. }
  10. }