UNPKG

sls3-legacy

Version:

SLS3 Legacy - A fork of Serverless Framework v3

18 lines (13 loc) 302 B
'use strict'; const cliCommandsSchema = require('../cli/commands-schema'); class Remove { constructor(serverless) { this.serverless = serverless; this.commands = { remove: { ...cliCommandsSchema.get('remove'), }, }; } } module.exports = Remove;