Add NetIO

This commit is contained in:
Steffen Lange 2021-03-27 12:59:59 +01:00
parent 91447da58f
commit 49889e7808

14
modules/NetIO.php Normal file
View file

@ -0,0 +1,14 @@
<?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;
}
}
?>