aboutsummaryrefslogtreecommitdiff
path: root/client/src/model/Route.scala
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/model/Route.scala')
-rw-r--r--client/src/model/Route.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/client/src/model/Route.scala b/client/src/model/Route.scala
new file mode 100644
index 0000000..34cb1fc
--- /dev/null
+++ b/client/src/model/Route.scala
@@ -0,0 +1,13 @@
+package yoga.model
+
+import java.net.URI
+
+sealed trait Route
+
+case object Route {
+
+ case object Index extends Route
+ final case class Licence(uri: URI) extends Route
+ final object NotFound extends Route
+
+}