boots: Boot application by using plugins.

[ application, factory, ioc, library, mit, monad ] [ Propose Tags ]
This version is deprecated.

Boot application.


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0, 0.0.1, 0.0.2, 0.0.3, 0.0.100, 0.1, 0.1.1, 0.2, 0.2.0.1 (info)
Dependencies base (>=4.11 && <5), boots, data-default (>=0.7.1.1 && <0.8), exceptions (>=0.10.2 && <0.11), fast-logger (>=2.4.16 && <2.5), microlens (>=0.4.10 && <0.5), monad-logger (>=0.3.30 && <0.4), mtl (>=2.2.2 && <2.3), salak (==0.3.1), salak-yaml (==0.3.1), text (>=1.2.3.1 && <1.3), unliftio-core (>=0.1.2.0 && <0.2) [details]
License MIT
Copyright 2019 Daniel YU
Author Daniel YU
Maintainer leptonyu@gmail.com
Revised Revision 2 made by leptonyu at 2019-09-05T02:59:43Z
Category Library
Home page https://github.com/leptonyu/boots#readme
Uploaded by leptonyu at 2019-07-27T12:34:39Z
Distributions
Reverse Dependencies 3 direct, 0 indirect [details]
Executables boots-exe
Downloads 2791 total (32 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for boots-0

[back to package description]

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