From fc18309865baf869d9c6f7ff7879f33f4cc122e6 Mon Sep 17 00:00:00 2001 From: Guillaume Grossetie Date: Thu, 28 Jun 2018 16:36:59 +0200 Subject: Create a Play! module to compile the router --- contrib/playlib/test/resources/hello-world/core/conf/routes | 2 ++ .../playlib/test/resources/hello-world/core/views/hello.scala.html | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 contrib/playlib/test/resources/hello-world/core/conf/routes create mode 100644 contrib/playlib/test/resources/hello-world/core/views/hello.scala.html (limited to 'contrib/playlib/test/resources') diff --git a/contrib/playlib/test/resources/hello-world/core/conf/routes b/contrib/playlib/test/resources/hello-world/core/conf/routes new file mode 100644 index 00000000..7d5e5498 --- /dev/null +++ b/contrib/playlib/test/resources/hello-world/core/conf/routes @@ -0,0 +1,2 @@ +GET / controllers.HomeController.index +GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset) diff --git a/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html b/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html new file mode 100644 index 00000000..3603fe07 --- /dev/null +++ b/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html @@ -0,0 +1,6 @@ +@this(title: String) + + +

@title

+ + \ No newline at end of file -- cgit v1.2.3