mirror of
https://github.com/zyphlar/doorlock.git
synced 2024-04-03 21:36:03 +00:00
10 lines
127 B
JavaScript
10 lines
127 B
JavaScript
![]() |
module.exports = class Door {
|
||
|
static open() {
|
||
|
console.log('OPEN')
|
||
|
}
|
||
|
|
||
|
static close() {
|
||
|
console.log('CLOSE')
|
||
|
}
|
||
|
}
|