aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Module/Zotfeed.php
blob: 0b4c3c0078e2e5da3166b35eeee9b269afc7dfc7 (plain) (tree)
1
2
3
4
5
6
7
8
9
     
                         
 
                           
 
                                  
 
                         
 
         
 
                        
 

                                       
 
         
 
 
 
 
 
<?php
namespace Zotlabs\Module;

use Zotlabs\Web\Controller;

class Zotfeed extends Controller {

	function post() {

	}

	function get() {

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

	}

}