Skip to content

Instantly share code, notes, and snippets.

@PipelineBaron
Created May 2, 2015 19:17
Show Gist options
  • Select an option

  • Save PipelineBaron/1e69965b9e4ad166577f to your computer and use it in GitHub Desktop.

Select an option

Save PipelineBaron/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