module Data.ConfigManager.Expr ( Expr(..) , Name , Value ) where import Data.Text (Text) data Expr = Binding Name Value | Import FilePath deriving (Eq, Read, Show) type Name = Text type Value = Text