PatchBot/modules/PipePipe.php
2025-07-30 15:41:47 +02:00

14 lines
343 B
PHP

<?php
class PipePipe extends PatchBase {
function __construct() {
parent::__construct('PipePipe Project', 'PipePipe', 'https://pipepipe.dev/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/InfinityLoop1308/PipePipe/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>