Hagia
log in
morj / hagia
overview
files
history
wiki
Viewing at
{-# LANGUAGE TemplateHaskell #-}
{-# OPTIONS_GHC -Wno-missing-signatures -Wno-type-defaults #-}

-- | Defines routes in a separate file to avoid template haskell phase problems
module Routes.Routes (routes) where

import Yesod (parseRoutesFile)

routes = $(parseRoutesFile "src/Routes/routes.yesodroutes")