Add appends a new container to the store.
(string, *Container)
| 13 | type Store interface { |
| 14 | // Add appends a new container to the store. |
| 15 | Add(string, *Container) |
| 16 | // Get returns a container from the store by the identifier it was stored with. |
| 17 | Get(string) *Container |
| 18 | // Delete removes a container from the store by the identifier it was stored with. |
no outgoing calls