mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
23 lines
203 B
PHP
23 lines
203 B
PHP
<?php
|
|
namespace Zotlabs\Module;
|
|
|
|
use Zotlabs\Web\Controller;
|
|
|
|
class Zotfeed extends Controller {
|
|
|
|
function post() {
|
|
|
|
}
|
|
|
|
function get() {
|
|
|
|
$outbox = new Outbox();
|
|
return $outbox->init();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|