PatchBot/modules/Fscrypt.php

14 lines
329 B
PHP

<?php
class Fscrypt extends PatchBase {
function __construct() {
parent::__construct('Joe Richey', 'fscrypt', 'https://github.com/google/fscrypt');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/google/fscrypt/releases'))
return $this->parse_json('tag_name');
return false;
}
}
?>