boots-app

A quick out-of-box factory using to build application with many useful builtin components based on boots.


Keywords
configuration, health, library, logger, mit, program, random, Propose Tags , Boots, haskell, haskell-application, haskell-library, salak
License
MIT
Install
cabal install boots-app

Documentation

boots

Hackage stackage LTS package stackage Nightly package Build Status

Boot applications by using plugins.

main :: IO ()
main = booting (pluginSimple "application") go
  where
    go = forever $ do
      user <- require "user"
      logInfo $ "Hello, " <> user <> "!"
      liftIO $ threadDelay 1000000