run check bool

This commit is contained in:
Dominic Wong
2021-09-09 13:56:52 +01:00
parent 528b1e1c69
commit 5c998951a1
17 changed files with 48 additions and 2 deletions

5
cache/examples.json vendored
View File

@@ -3,6 +3,7 @@
"set": [{
"title": "Set a value",
"description": "Set allows you to set a value",
"run_check": true,
"request": {
"key": "foo",
"value": "bar"
@@ -14,6 +15,7 @@
"get": [{
"title": "Get a value",
"description": "Get returns a value from the cache",
"run_check": true,
"request": {
"key": "foo"
},
@@ -26,6 +28,7 @@
"delete": [{
"title": "Delete a value",
"description": "Delete a value from the cache",
"run_check": true,
"request": {
"key": "foo"
},
@@ -36,6 +39,7 @@
"increment": [{
"title": "Increment a value",
"description": "Increment a value by 2",
"run_check": true,
"request": {
"key": "counter",
"value": 2
@@ -48,6 +52,7 @@
"decrement": [{
"title": "Decrement a value",
"description": "Decrement a value by 2",
"run_check": true,
"request": {
"key": "counter",
"value": 2