mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
16 lines
262 B
JavaScript
16 lines
262 B
JavaScript
import cliCommandsSchema from '../cli/commands-schema.js'
|
|
|
|
class Remove {
|
|
constructor(serverless) {
|
|
this.serverless = serverless
|
|
|
|
this.commands = {
|
|
remove: {
|
|
...cliCommandsSchema.get('remove'),
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
export default Remove
|