/*! * Copyright 2019-2020 Lime Technology Inc. All rights reserved. * Written by: Alexis Tyler */ import { CoreResult } from '../types'; /** * Get all apps. */ export const getApps = async (): Promise => { const apps = []; return { text: `Apps: ${JSON.stringify(apps, null, 2)}`, json: apps }; };