Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func LoadConfig ¶
func LoadConfigFromJsonBytes ¶
func LoadConfigFromYamlBytes ¶
Types ¶
type Properties ¶
type Properties interface { GetString(key string) string SetString(key, value string) GetInt(key string) int SetInt(key string, value int) ToString() string }
Properties interface provides the means to access configuration.
func LoadProperties ¶
func LoadProperties(filename string) (Properties, error)
Loads the properties into a properties configuration instance. Returns an error that indicates if there was a problem loading the configuration.
func NewProperties ¶
func NewProperties() Properties
Builds a new properties configuration structure
type PropertyError ¶
type PropertyError struct {
// contains filtered or unexported fields
}
PropertyError represents a configuration error message.
func (*PropertyError) Error ¶
func (configError *PropertyError) Error() string
Returns the error message.
Click to show internal directories.
Click to hide internal directories.