| 3 | var _ Source = &memorySource{} |
| 4 | |
| 5 | type memorySource struct { |
| 6 | data map[string]map[string]any |
| 7 | } |
| 8 | |
| 9 | // NewMemorySource returns a new memorySource. |
| 10 | func NewMemorySource() Source { |
nothing calls this directly
no outgoing calls
no test coverage detected