This commit is contained in:
Steffen Lange 2023-03-25 22:10:41 +01:00
parent 868bacb2c6
commit 1885665c6f

14
modules/Mosh.php Normal file
View file

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