etcd/mod/lock/release_handler.go
2013-11-27 14:36:14 -07:00

12 lines
204 B
Go

package lock
import (
"net/http"
)
// releaseLockHandler deletes the lock.
func (h *handler) releaseLockHandler(w http.ResponseWriter, req *http.Request) {
// TODO: h.client.Delete(key_with_index)
}