PatchBot/modules/KiTTY.php
2023-08-16 13:57:21 +02:00

14 lines
320 B
PHP

<?php
class KiTTY extends PatchBase {
function __construct() {
parent::__construct('Cyril Dupont', 'KiTTY', 'http://kitty.9bis.com/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/cyd01/KiTTY/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>