boots: Boot application by plugins

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

Boot application by using plugins.


[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.10 && <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 1 made by leptonyu at 2019-09-05T02:57:55Z
Category Library
Home page https://github.com/leptonyu/boots#readme
Uploaded by leptonyu at 2019-07-27T12:48:33Z
Distributions
Reverse Dependencies 3 direct, 0 indirect [details]
Executables boots-exe
Downloads 2777 total (26 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.0.1

[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