DeleteObjectStore will delete the underlying stream for the named object.
(bucket string)
| 319 | |
| 320 | // DeleteObjectStore will delete the underlying stream for the named object. |
| 321 | func (js *js) DeleteObjectStore(bucket string) error { |
| 322 | stream := fmt.Sprintf(objNameTmpl, bucket) |
| 323 | return js.DeleteStream(stream) |
| 324 | } |
| 325 | |
| 326 | func encodeName(name string) string { |
| 327 | return base64.URLEncoding.EncodeToString([]byte(name)) |
nothing calls this directly
no test coverage detected