mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
12 lines
204 B
Go
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)
|
|
}
|
|
|