Commit from GitHub Actions (Generate Clients & Examples)

This commit is contained in:
asim
2021-11-17 22:20:21 +00:00
parent ce58fd0fbe
commit ef70da5380
145 changed files with 145 additions and 145 deletions

View File

@@ -1,4 +1,4 @@
const { CacheService } = require("m3o/cache");
const { CacheService } = require("micro-js-client/cache");
// Decrement a value (if it's a number). If key not found it is equivalent to set.
async function decrementAvalue() {

View File

@@ -1,4 +1,4 @@
const { CacheService } = require("m3o/cache");
const { CacheService } = require("micro-js-client/cache");
// Delete a value from the cache. If key not found a success response is returned.
async function deleteAvalue() {

View File

@@ -1,4 +1,4 @@
const { CacheService } = require("m3o/cache");
const { CacheService } = require("micro-js-client/cache");
// Get an item from the cache by key. If key is not found, an empty response is returned.
async function getAvalue() {

View File

@@ -1,4 +1,4 @@
const { CacheService } = require("m3o/cache");
const { CacheService } = require("micro-js-client/cache");
// Increment a value (if it's a number). If key not found it is equivalent to set.
async function incrementAvalue() {

View File

@@ -1,4 +1,4 @@
const { CacheService } = require("m3o/cache");
const { CacheService } = require("micro-js-client/cache");
// Set an item in the cache. Overwrites any existing value already set.
async function setAvalue() {