PatchBot/modules/Electrum.php
2021-05-20 00:04:00 +02:00

14 lines
299 B
PHP

<?php
class Electrum extends PatchBase {
function __construct() {
parent::__construct('Thomas Voegtlin', 'Electrum', 'https://electrum.org/');
}
function check() : bool {
if ($this->fetch_json('https://electrum.org/version'))
return $this->parse_json('version');
return false;
}
}
?>