Add Halloy

This commit is contained in:
Steffen Lange 2025-04-23 17:26:55 +02:00
parent 327502def7
commit 1e5cf2a5fc

14
modules/Halloy.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Halloy extends PatchBase {
function __construct() {
parent::__construct('Squidowl Team', 'Halloy', 'https://halloy.chat/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/squidowl/halloy/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>