This commit is contained in:
Steffen Lange 2023-04-09 23:03:22 +02:00
parent 2e74add295
commit 5c859ec1da

14
modules/Frp.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Frp extends PatchBase {
function __construct() {
parent::__construct('fatedier', 'frp', 'https://gofrp.org/en/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/fatedier/frp/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>