14 lines
366 B
PHP
14 lines
366 B
PHP
<?php
|
|
|
|
class OSP extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('Deamos', 'Open Streaming Platform', 'https://openstreamingplatform.com/');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch_json('https://gitlab.com/api/v4/projects/osp-group%2Fflask-nginx-rtmp-manager/releases'))
|
|
return $this->parse_json('tag_name');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|