About

Metadata

  • Last updated , by leptonyu
  • License MIT
  • Categories Monads
  • Maintained by: leptonyu@gmail.com

  • Lottery factor: 0

Links

Installation

This release has been deprecated in favour of:

@hackage/boots-0.2.0.1

Readme

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