aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorstuebinm2022-06-06 21:51:56 +0200
committerstuebinm2022-06-06 22:36:12 +0200
commitb092808a65b16688546b4f4f021a84cc120f8a8a (patch)
tree0c80001c4acee6eeb9f08ea20e01c865d8aa3906 /app
parent47ec9303325e66dde548493f0319eaece707aff4 (diff)
restructure GTFS types
unfortunately doesn't quite get rid of all the type family still since it's just too useful … but does reduce it somewhat. Also, maps are much easier for looking things up than vectors!
Diffstat (limited to 'app')
-rw-r--r--app/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs
index de77adc..5b4224a 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -33,7 +33,7 @@ import Server
main :: IO ()
main = do
- gtfs <- loadGtfs @Deep "./gtfs.zip"
+ gtfs <- loadGtfs "./gtfs.zip"
app <- application gtfs
loggerMiddleware <- mkRequestLogger
$ def { outputFormat = Detailed True }