Storage provides goroutine safe capabilities of insertion into and retrieval from the time-series storage. Backed by "nakabonne/tstorage"
| 19 | // Storage provides goroutine safe capabilities of insertion into and retrieval from the time-series storage. |
| 20 | // Backed by "nakabonne/tstorage" |
| 21 | type Storage interface { |
| 22 | Writer |
| 23 | Reader |
| 24 | } |
| 25 | |
| 26 | type Writer interface { |
| 27 | Insert(result *Result) error |
nothing calls this directly
no outgoing calls
no test coverage detected