packages feed

hunt-server-0.3.0.0: src/Main.hs

-- ----------------------------------------------------------------------------
{- |
  Main module for the executable.
-}
-- ----------------------------------------------------------------------------

module Main where

import           Data.Default

import           Hunt.Server            (start)
import           System.Console.CmdArgs (cmdArgs)

-- ------------------------------------------------------------

-- | Main function for the executable.
main :: IO ()
main = cmdArgs def >>= start

-- ------------------------------------------------------------