-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Simple CLI tool to perform commons tasks such as tracking deploys. -- -- Please see the README on GitHub at -- https://github.com/stackbuilders/rollbar-haskell/tree/master/rollbar-cli @package rollbar-cli @version 1.0.0 module Rollbar.CLI data Command -- | Pings Rollbar API server. CommandPing :: Command -- | Tracks a deploy in Rollbar. CommandDeploy :: DeployCommand -> Command data DeployCommand DeployCommandReport :: Maybe Revision -> DeployCommand -- | Parses a Command. parseCommand :: IO Command runCommand :: Settings -> Command -> IO () instance GHC.Show.Show Rollbar.CLI.DeployCommand instance GHC.Classes.Eq Rollbar.CLI.DeployCommand instance GHC.Show.Show Rollbar.CLI.Command instance GHC.Classes.Eq Rollbar.CLI.Command