micro/config/source/memory
Vasiliy Tolstov 06136312bb
regen files with never protoc (#6)
* regen files with never protoc
* rewrite import path

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-08-19 17:47:17 +03:00
..
memory.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
options.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
README.md Update config source README file 2019-09-04 15:49:58 +08:00
watcher.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00

Memory Source

The memory source provides in-memory data as a source

Memory Format

The expected data format is json

data := []byte(`{
    "hosts": {
        "database": {
            "address": "10.0.0.1",
            "port": 3306
        },
        "cache": {
            "address": "10.0.0.2",
            "port": 6379
        }
    }
}`)

New Source

Specify source with data

memorySource := memory.NewSource(
	memory.WithJSON(data),
)

Load Source

Load the source into config

// Create new config
conf := config.NewConfig()

// Load memory source
conf.Load(memorySource)