aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Zotfeed.php
blob: 0b4c3c0078e2e5da3166b35eeee9b269afc7dfc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
namespace Zotlabs\Module;

use Zotlabs\Web\Controller;

class Zotfeed extends Controller {

	function post() {

	}

	function get() {

		$outbox = new Outbox();
		return $outbox->init();

	}

}