16 lines
401 B
TypeScript
16 lines
401 B
TypeScript
import { GluegunMenuToolbox } from '@lenne.tech/gluegun-menu';
|
|
import { defaultMenuSettings } from '../../../globals';
|
|
|
|
/**
|
|
* Section1 menu
|
|
*/
|
|
module.exports = {
|
|
name: 'testservers',
|
|
alias: ['ts'],
|
|
description: 'Deploy to testservers (ts)',
|
|
hidden: false,
|
|
run: async (toolbox: GluegunMenuToolbox) => {
|
|
await toolbox.menu.showMenu('deployment testservers', defaultMenuSettings);
|
|
}
|
|
};
|