consul: Adding KVSDeleteTree operation

This commit is contained in:
Armon Dadgar 2014-03-31 12:13:40 -07:00
parent d804a08744
commit 48ffdc05f4
1 changed files with 6 additions and 5 deletions

View File

@ -190,6 +190,7 @@ const (
KVSGet = "get" // Key must match
KVSList = "list" // Key is only a prefix
KVSDelete = "delete"
KVSDeleteTree = "delete-tree"
KVSCAS = "cas" // Check-and-set
)