- Add support for store decoding - add support for yaml, csv, jsonl encoding - refactor, cleanup
20 lines
350 B
Go
20 lines
350 B
Go
package yaml
|
|
|
|
import (
|
|
"github.com/cortezaproject/corteza-server/pkg/envoy/resource"
|
|
"github.com/cortezaproject/corteza-server/system/types"
|
|
)
|
|
|
|
type (
|
|
setting struct {
|
|
res *types.SettingValue
|
|
ts *resource.Timestamps
|
|
us *resource.Userstamps
|
|
|
|
envoyConfig *resource.EnvoyConfig
|
|
encoderConfig *EncoderConfig
|
|
}
|
|
|
|
settingSet []*setting
|
|
)
|