Add Open Streaming Platform

This commit is contained in:
Steffen Lange 2021-02-14 01:27:54 +01:00
parent f723fe30ba
commit e7635ef3ac

14
modules/OSP.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class OSP extends PatchBase {
function __construct() {
parent::__construct('Deamos', 'Open Streaming Platform', 'https://openstreamingplatform.com/');
}
function check() : bool {
if ($this->fetch('https://gitlab.com/api/v4/projects/Deamos%2Fflask-nginx-rtmp-manager/releases', true))
return $this->parse_json('tag_name');
return false;
}
}
?>