2014-04-26 09:18:56 +00:00
|
|
|
package Configuration
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"github.com/SommerEngineering/Ocean/Configuration/Meta"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Read the whole configuration and enable Ocean to get the configuration database.
|
|
|
|
|
|
|
|
Hint: Normally, you do not use this package at all, because the application configuration should persist
|
|
|
|
inside the configuration database.
|
|
|
|
*/
|
|
|
|
func Read() (result Meta.Configuration) {
|
|
|
|
result = configuration
|
|
|
|
return
|
|
|
|
}
|