mirror of
https://github.com/zyphlar/doorlock.git
synced 2024-04-03 21:36:03 +00:00
12 lines
179 B
JavaScript
12 lines
179 B
JavaScript
![]() |
class Display {
|
||
|
static successMessage(msg) {
|
||
|
console.log('SUCCESS', msg)
|
||
|
}
|
||
|
|
||
|
static failureMessage(msg) {
|
||
|
console.log('FAILURE', msg)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Display
|