mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 11:08:28 -06:00
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
const Star = require('./star.js')
|
|
|
|
class Unstar extends Star {
|
|
static description = 'Remove an item from your favorite packages'
|
|
static name = 'unstar'
|
|
}
|
|
|
|
module.exports = Unstar
|