Add Sniffnet

This commit is contained in:
Steffen Lange 2026-04-17 22:38:31 +02:00
parent 4ff57a1465
commit 1122c389d6

14
modules/Sniffnet.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Sniffnet extends PatchBase {
function __construct() {
parent::__construct('Giuliano Bellini', 'Sniffnet', 'https://sniffnet.net/download/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/GyulyVGC/sniffnet/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>