module Version ( versionStr,
                 progName ) where

import Data.Version (showVersion)

import Paths_mpd_current_json (version) -- generated by Cabal

progName :: [Char]
progName :: [Char]
progName = [Char]
"mpd-current-json"

versionStr :: [Char]
versionStr :: [Char]
versionStr = [Char]
progName [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
" version " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ (Version -> [Char]
showVersion Version
version)