Add Bitwarden_rs

This commit is contained in:
Steffen Lange 2019-08-10 10:20:39 +02:00
parent bbeeb5eaf6
commit df52860488

14
modules/Bitwarden_rs.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Bitwarden_rs extends PatchBase {
function __construct() {
parent::__construct('Daniel García', 'Bitwarden in Rust', 'https://github.com/dani-garcia/bitwarden_rs');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/dani-garcia/bw_web_builds/releases/latest', true))
return $this->parse_json('tag_name');
return false;
}
}
?>