PatchBot/modules/Tftpd32.php
2025-07-05 15:38:12 +02:00

14 lines
329 B
PHP

<?php
class Tftpd32 extends PatchBase {
function __construct() {
parent::__construct('Philippe Jounin', 'Tftpd64', 'http://www.tftpd64.com/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/PJO2/tftpd64/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>