Codec implements the encoding.Encoder and encoding.Decoder interfaces for encoding data containing environment variables (commonly called as dotenv format).
| 14 | // Codec implements the encoding.Encoder and encoding.Decoder interfaces for encoding data containing environment variables |
| 15 | // (commonly called as dotenv format). |
| 16 | type Codec struct{} |
| 17 | |
| 18 | func (Codec) Encode(v map[string]any) ([]byte, error) { |
| 19 | flattened := map[string]any{} |
nothing calls this directly
no outgoing calls
no test coverage detected