mirror of
https://github.com/aelve/guide.git
synced 2024-11-25 18:56:52 +03:00
16 lines
393 B
Haskell
16 lines
393 B
Haskell
{-# LANGUAGE OverloadedStrings #-}
|
|
{-# LANGUAGE ScopedTypeVariables #-}
|
|
|
|
module Main where
|
|
|
|
import Data.Default
|
|
import REPL
|
|
import qualified AllCommands as AC
|
|
import PackageManager
|
|
|
|
main :: IO ()
|
|
-- launches package manager update, that performs update every 60 minutes
|
|
--main = launchPackageUpdater def 60
|
|
-- launches REPL for hackage and stackage
|
|
main = processREPLCycle def AC.allCommands
|