Add fscrypt

This commit is contained in:
Steffen Lange 2020-03-31 14:21:21 +02:00
parent 168ac4031c
commit e46dbb75a7

14
modules/Fscrypt.php Normal file
View file

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