diff options
author | Pacien TRAN-GIRARD | 2015-01-22 20:58:09 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-01-22 20:58:09 +0100 |
commit | 2f6780969318c08c7a0a0e8e52a7dad33ff53786 (patch) | |
tree | 893d9356b0fd02b40124712bfa88128f02cd7b53 /app/controllers | |
download | minibay-2f6780969318c08c7a0a0e8e52a7dad33ff53786.tar.gz |
Bootstrap Play Scala project
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/Application.scala | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/controllers/Application.scala b/app/controllers/Application.scala new file mode 100644 index 0000000..7cd798f --- /dev/null +++ b/app/controllers/Application.scala | |||
@@ -0,0 +1,12 @@ | |||
1 | package controllers | ||
2 | |||
3 | import play.api._ | ||
4 | import play.api.mvc._ | ||
5 | |||
6 | object Application extends Controller { | ||
7 | |||
8 | def index = Action { | ||
9 | Ok(views.html.index("Your new application is ready.")) | ||
10 | } | ||
11 | |||
12 | } \ No newline at end of file | ||