Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-10-29 10:40:25 +00:00
parent 8e9779a8cb
commit 4e64b77e47
127 changed files with 895 additions and 0 deletions

7
curl/cache/decrement/decrementAValue.sh vendored Executable file
View File

@@ -0,0 +1,7 @@
curl "https://api.m3o.com/v1/cache/Decrement" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"key": "counter",
"value": 2
}'

6
curl/cache/delete/deleteAValue.sh vendored Executable file
View File

@@ -0,0 +1,6 @@
curl "https://api.m3o.com/v1/cache/Delete" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"key": "foo"
}'

6
curl/cache/get/getAValue.sh vendored Executable file
View File

@@ -0,0 +1,6 @@
curl "https://api.m3o.com/v1/cache/Get" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"key": "foo"
}'

7
curl/cache/increment/incrementAValue.sh vendored Executable file
View File

@@ -0,0 +1,7 @@
curl "https://api.m3o.com/v1/cache/Increment" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"key": "counter",
"value": 2
}'

7
curl/cache/set/setAValue.sh vendored Executable file
View File

@@ -0,0 +1,7 @@
curl "https://api.m3o.com/v1/cache/Set" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"key": "foo",
"value": "bar"
}'