Skip to content

Instantly share code, notes, and snippets.

@hossshy
Created August 4, 2016 04:29
Show Gist options
  • Save hossshy/8615d6481baf57ca8622f0bba581117f to your computer and use it in GitHub Desktop.
Save hossshy/8615d6481baf57ca8622f0bba581117f to your computer and use it in GitHub Desktop.
package controllers
import javax.inject._
import play.api._
import play.api.mvc._
@Singleton
class DiaryController @Inject() extends Controller {
def index = Action {
Ok(views.html.diary("hogehoge."))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment