Store handles storage of dotenv data
| 12 | |
| 13 | // Store handles storage of dotenv data |
| 14 | type Store struct { |
| 15 | config config.DotenvStoreConfig |
| 16 | } |
| 17 | |
| 18 | func NewStore(c *config.DotenvStoreConfig) *Store { |
| 19 | return &Store{config: *c} |
nothing calls this directly
no outgoing calls
no test coverage detected