PatchBot/modules/Gogs.php
2021-01-15 21:15:46 +01:00

14 lines
311 B
PHP

<?php
class Gogs extends PatchBase {
function __construct() {
parent::__construct('Gogs Authors', 'Gogs', 'https://gogs.io/');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/gogs/gogs/releases/latest', true))
return $this->parse_json('tag_name');
return false;
}
}
?>