module GitVersion (gitVersion,gitBranch,gitFullVersion) where
import Prelude
gitVersion :: Maybe String
gitVersion :: Maybe String
gitVersion = String -> Maybe String
forall a. a -> Maybe a
Just "2.1-0-ge17aa20"
{-# NOINLINE gitVersion #-}
gitBranch :: Maybe String
gitBranch :: Maybe String
gitBranch = String -> Maybe String
forall a. a -> Maybe a
Just "master"
{-# NOINLINE gitBranch #-}
gitFullVersion :: Maybe String
gitFullVersion :: Maybe String
gitFullVersion = String -> Maybe String
forall a. a -> Maybe a
Just "master:2.1-0-ge17aa20"
{-# NOINLINE gitFullVersion #-}