Store handles storage of YAML data
| 17 | |
| 18 | // Store handles storage of YAML data |
| 19 | type Store struct { |
| 20 | config config.YAMLStoreConfig |
| 21 | } |
| 22 | |
| 23 | func NewStore(c *config.YAMLStoreConfig) *Store { |
| 24 | return &Store{config: *c} |
nothing calls this directly
no outgoing calls
no test coverage detected