This commit is contained in:
Steffen Lange 2025-11-16 18:48:56 +01:00
parent 3ead7e94cb
commit 11ebe569d3

14
modules/Deno.php Normal file
View file

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