Remove orphaned Golinks and NetIO

This commit is contained in:
Steffen Lange 2025-11-19 16:31:48 +01:00
parent 11ebe569d3
commit 34a1c368f0
2 changed files with 0 additions and 28 deletions

View file

@ -1,14 +0,0 @@
<?php
class Golinks extends PatchBase {
function __construct() {
parent::__construct('James Mills', 'golinks', 'https://git.mills.io/prologic/golinks');
}
function check() : bool {
if ($this->fetch_json('https://git.mills.io/api/v1/repos/prologic/golinks/releases?pre-release=false&limit=1'))
return $this->parse_json('tag_name');
return false;
}
}
?>

View file

@ -1,14 +0,0 @@
<?php
class NetIO extends PatchBase {
function __construct() {
parent::__construct('Kai Uwe Rommel', 'NetIO', 'https://github.com/kai-uwe-rommel/netio');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/kai-uwe-rommel/netio/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>