Remove Homepage

This commit is contained in:
Steffen Lange 2021-03-14 21:21:19 +01:00
parent a8210df0e5
commit eab11e3f92

View file

@ -1,14 +0,0 @@
<?php
class Homepage extends PatchBase {
function __construct() {
parent::__construct('Tomer Shvueli', 'Homepage', 'https://github.com/tomershvueli/homepage');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/tomershvueli/homepage/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>