Remove discontinued RPort open-source

This commit is contained in:
Steffen Lange 2023-10-01 21:35:06 +02:00
parent d611cb2faf
commit 6383d257a5

View file

@ -1,14 +0,0 @@
<?php
class RPort extends PatchBase {
function __construct() {
parent::__construct('CloudRadar', 'RPort', 'https://oss.rport.io/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/cloudradar-monitoring/rport/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>