CreateOrUpdate creates or updates metadata for the context.
(meta Metadata)
| 135 | |
| 136 | // CreateOrUpdate creates or updates metadata for the context. |
| 137 | func (s *ContextStore) CreateOrUpdate(meta Metadata) error { |
| 138 | return s.meta.createOrUpdate(meta) |
| 139 | } |
| 140 | |
| 141 | // Remove deletes the context with the given name, if found. |
| 142 | func (s *ContextStore) Remove(name string) error { |
nothing calls this directly
no test coverage detected