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