import { cache } from '@sage/toolkit';
const myCache: LocalCache = cache.createLocalCache();
//Set data
await myCache.set('123', 'cde');
// Get data
const data = await myCache.get('123');
import { httpClient } from '@sage/toolkit';
const httpClientInstance = httpClient.create();
const response = await httpClientInstance.get('/user?ID=12345');