PatchBot/modules/ShredOS.php
2023-04-02 14:47:50 +02:00

14 lines
367 B
PHP

<?php
class ShredOS extends PatchBase {
function __construct() {
parent::__construct('PartialVolume', 'ShredOS', 'https://github.com/PartialVolume/shredos.x86_64');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/PartialVolume/shredos.x86_64/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>