Add godap

This commit is contained in:
Steffen Lange 2025-08-22 10:56:18 +02:00
parent b0a76ac120
commit de13d47f58

14
modules/Godap.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Godap extends PatchBase {
function __construct() {
parent::__construct('Artur Marzano', 'godap', 'https://github.com/Macmod/godap');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/Macmod/godap/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>