Skip to content

Instantly share code, notes, and snippets.

@JosephMoniz
Created May 2, 2015 19:17
Show Gist options
  • Save JosephMoniz/1e69965b9e4ad166577f to your computer and use it in GitHub Desktop.
Save JosephMoniz/1e69965b9e4ad166577f to your computer and use it in GitHub Desktop.
A simple controller
final case class SimpleController() extends Controller {
def action(implicit request: HttpRequest) = {
Ok("Simple string response.")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment