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