mirror of https://github.com/status-im/consul.git
Makes all the query ops the correct type.
This commit is contained in:
parent
533e6fc89e
commit
e3ef204ac7
|
@ -83,8 +83,8 @@ type PreparedQueryOp string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PreparedQueryCreate PreparedQueryOp = "create"
|
PreparedQueryCreate PreparedQueryOp = "create"
|
||||||
PreparedQueryUpdate = "update"
|
PreparedQueryUpdate PreparedQueryOp = "update"
|
||||||
PreparedQueryDelete = "delete"
|
PreparedQueryDelete PreparedQueryOp = "delete"
|
||||||
)
|
)
|
||||||
|
|
||||||
// QueryRequest is used to create or change prepared queries.
|
// QueryRequest is used to create or change prepared queries.
|
||||||
|
|
Loading…
Reference in New Issue