diff options
author | stuebinm | 2022-06-06 21:51:56 +0200 |
---|---|---|
committer | stuebinm | 2022-06-06 22:36:12 +0200 |
commit | b092808a65b16688546b4f4f021a84cc120f8a8a (patch) | |
tree | 0c80001c4acee6eeb9f08ea20e01c865d8aa3906 /app/Main.hs | |
parent | 47ec9303325e66dde548493f0319eaece707aff4 (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/Main.hs')
-rw-r--r-- | app/Main.hs | 2 |
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 } |