Add Bludit

This commit is contained in:
Steffen Lange 2020-02-05 16:18:16 +01:00
parent 24f6d73ae7
commit 5678222910

14
modules/Bludit.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Bludit extends PatchBase {
function __construct() {
parent::__construct('Diego Najar', 'Bludit', 'https://www.bludit.com/');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/bludit/bludit/releases/latest', true))
return $this->parse_json('tag_name');
return false;
}
}
?>