mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
14 lines
107 B
JavaScript
14 lines
107 B
JavaScript
|
class Plugin {
|
||
|
async load() {
|
||
|
|
||
|
}
|
||
|
|
||
|
async unload() {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
Plugin,
|
||
|
};
|