diff --git a/server/monitor-types/monitor-type.js b/server/monitor-types/monitor-type.js new file mode 100644 index 00000000..f3b4f709 --- /dev/null +++ b/server/monitor-types/monitor-type.js @@ -0,0 +1,5 @@ +class MonitorType { + +} + +module.exports = MonitorType; diff --git a/server/uptime-kuma-server.js b/server/uptime-kuma-server.js index 7f397318..ebd4082c 100644 --- a/server/uptime-kuma-server.js +++ b/server/uptime-kuma-server.js @@ -252,6 +252,10 @@ class UptimeKumaServer { this.pluginsManager = new PluginsManager(this, dir); } + addMonitorType(monitorType) { + // TODO + } + } module.exports = {