9 lines
183 B
JavaScript
Raw Normal View History

2025-08-23 11:41:14 +02:00
const Star = require('./star.js')
class Unstar extends Star {
static description = 'Remove an item from your favorite packages'
static name = 'unstar'
}
module.exports = Unstar