bring some Zot6 libraries and interfaces to red/hubzilla
This commit is contained in:
25
Zotlabs/Module/Zot.php
Normal file
25
Zotlabs/Module/Zot.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @file Zotlabs/Module/Zot.php
|
||||
*
|
||||
* @brief Zot endpoint.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Zotlabs\Module;
|
||||
|
||||
use Zotlabs\Zot6 as ZotProtocol;
|
||||
|
||||
/**
|
||||
* @brief Zot module.
|
||||
*
|
||||
*/
|
||||
|
||||
class Zot extends \Zotlabs\Web\Controller {
|
||||
|
||||
function init() {
|
||||
$zot = new ZotProtocol\Receiver(new ZotProtocol\Zot6Handler());
|
||||
json_return_and_die($zot->run(),'application/x-zot+jzon');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user