()
| 108 | } |
| 109 | |
| 110 | func (r *RootElem) GetConfigMap() map[string]any { |
| 111 | atoms := r.getAtomsByPrefix("$config.") |
| 112 | result := make(map[string]any) |
| 113 | for name, atom := range atoms { |
| 114 | result[name] = atom.GetVal() |
| 115 | } |
| 116 | return result |
| 117 | } |
| 118 | |
| 119 | func MakeRoot(client *ClientImpl) *RootElem { |
| 120 | return &RootElem{ |
no test coverage detected