initial commit

This commit is contained in:
Pavel Korytov 2022-05-23 10:26:46 +03:00
commit d1e4646b09

19
init.php Normal file
View file

@ -0,0 +1,19 @@
<?php
class Elfeed_Sync extends Plugin {
private $host;
function about() {
return array(1.0, "Elfeed Sync", "Sync API for elfeed", false, "http://example.com");
}
function api_version() {
return 1;
}
function init($host) {
$this->host = $host;
}
function testMethod() {
return array(API::STATUS_OK, array("ok" => true));
}
}