diff options
| author | Chris Lu <chris.lu@gmail.com> | 2013-02-10 03:25:35 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2013-02-10 03:25:35 -0800 |
| commit | ab6fb13ad795763ba7fc7c91696d2890be6da543 (patch) | |
| tree | 3d956452bdcef7ea4b50457faff07df06f8d4346 /weed/operation/delete_content.go | |
| parent | 1b6f53cdac9a44370f67276ede138f5cde8806c2 (diff) | |
| download | seaweedfs-ab6fb13ad795763ba7fc7c91696d2890be6da543.tar.xz seaweedfs-ab6fb13ad795763ba7fc7c91696d2890be6da543.zip | |
avoid the "src" folder
Diffstat (limited to 'weed/operation/delete_content.go')
| -rw-r--r-- | weed/operation/delete_content.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/weed/operation/delete_content.go b/weed/operation/delete_content.go new file mode 100644 index 000000000..2bdb49651 --- /dev/null +++ b/weed/operation/delete_content.go @@ -0,0 +1,16 @@ +package operation + +import ( + "log" + "net/http" +) + +func Delete(url string) error { + req, err := http.NewRequest("DELETE", url, nil) + if err != nil { + log.Println("failing to delete", url) + return err + } + _, err = http.DefaultClient.Do(req) + return err +} |
