mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
17 lines
432 B
JavaScript
17 lines
432 B
JavaScript
'use strict';
|
|
|
|
const { writeText, style } = require('@serverless/utils/log');
|
|
const commmandSchema = require('../commands-schema/no-service').get('');
|
|
const renderOptions = require('./options');
|
|
|
|
module.exports = () => {
|
|
writeText(
|
|
style.aside('Interactive CLI'),
|
|
`Run ${style.strong('serverless')} to interactively setup a project.`,
|
|
null,
|
|
style.aside('Options')
|
|
);
|
|
|
|
renderOptions(commmandSchema.options);
|
|
};
|