mirror of
https://github.com/unraid/api.git
synced 2026-01-15 13:10:01 -06:00
19 lines
324 B
TypeScript
19 lines
324 B
TypeScript
/*!
|
|
* 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<CoreResult> => {
|
|
const apps = [];
|
|
|
|
return {
|
|
text: `Apps: ${JSON.stringify(apps, null, 2)}`,
|
|
json: apps
|
|
};
|
|
};
|