Add KiTTY

This commit is contained in:
Steffen Lange 2023-08-16 13:57:21 +02:00
parent f9e7dde85c
commit 15f1d8764e

14
modules/KiTTY.php Normal file
View file

@ -0,0 +1,14 @@
<?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;
}
}
?>