mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-15 20:06:19 +08:00
15 lines
208 B
Go
15 lines
208 B
Go
![]() |
package operation
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func Delete(url string) error {
|
||
|
req, err := http.NewRequest("DELETE", url, nil)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
_, err = http.DefaultClient.Do(req)
|
||
|
return err
|
||
|
}
|