streams/Zotlabs/Module/Poco.php

20 lines
208 B
PHP
Raw Normal View History

2016-04-19 03:38:38 +00:00
<?php
namespace Zotlabs\Module;
2019-04-15 06:50:49 +00:00
/*
* Portable Contacts server
*/
use Zotlabs\Web\Controller;
2016-04-19 03:38:38 +00:00
2019-04-15 06:50:49 +00:00
require_once('include/socgraph.php');
2016-04-19 03:38:38 +00:00
2019-04-15 06:50:49 +00:00
class Poco extends Controller {
2016-04-19 03:38:38 +00:00
function init() {
2019-04-15 06:50:49 +00:00
poco();
2016-04-19 03:38:38 +00:00
}
}