PatchBot/modules/Doxx.php
Steffen Lange 56bf36d18c Add doxx
2025-11-09 21:47:17 +01:00

14 lines
342 B
PHP

<?php
class Doxx extends PatchBase {
function __construct() {
parent::__construct('Brandon M. Greenwell', 'doxx', 'https://bgreenwell.github.io/doxx/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/bgreenwell/doxx/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>