Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Repository ¶
type Repository interface {
// Has Determine if the given configuration value exists.
Has(key string) bool
// Get the specified configuration value.
Get(key interface{}, defaultVal interface{}) interface{}
// All Get all of the configuration items for the application.
All() map[string]interface{}
// Set a given configuration value.
Set(key interface{}, value interface{})
// Prepend a value onto an array configuration value.
Prepend(key string, value interface{})
// Push a value onto an array configuration value.
Push(key string, value interface{})
}
Repository 接口定义
Source Files
¶
- repository.go
Click to show internal directories.
Click to hide internal directories.