summaryrefslogtreecommitdiff
path: root/app/Routes.hs
diff options
context:
space:
mode:
authorAndrew Guschin <guschin.drew@gmail.com>2023-03-05 14:28:47 +0400
committerAndrew Guschin <guschin.drew@gmail.com>2023-03-05 14:28:47 +0400
commitabbf64f5a5453fcb6bfe9b90df9e8f6fa002b66a (patch)
tree9e567245de098d9938b97a96b5e20bfa2ebe2543 /app/Routes.hs
parenta0e8e5a91d15ed8c79f4a1b5914d3a6242c0cbd3 (diff)
Fixed warningsHEADmaster
Diffstat (limited to 'app/Routes.hs')
-rw-r--r--app/Routes.hs6
1 files changed, 2 insertions, 4 deletions
diff --git a/app/Routes.hs b/app/Routes.hs
index 3dbb3aa..09d4a64 100644
--- a/app/Routes.hs
+++ b/app/Routes.hs
@@ -2,13 +2,11 @@ module Routes where
import qualified Data.Text as T
-import Web.Response
-import Web.Request
import Web.Router
-import Web.Utils
import Web.Http
import Views
+routesTable :: [Route]
routesTable = [ Route indexGet (T.pack "/") GET
- , Route helloGet (T.pack "/hello") GET ] \ No newline at end of file
+ , Route helloGet (T.pack "/hello") GET ]