streams/index.php

16 lines
201 B
PHP
Raw Normal View History

<?php
2016-05-24 23:36:55 +00:00
namespace Zotlabs\Web;
2010-12-09 07:08:59 +00:00
/**
* @file index.php
2010-12-09 07:08:59 +00:00
*
* @brief The main entry point to the application.
2010-12-09 07:08:59 +00:00
*/
2010-07-01 23:48:07 +00:00
2016-05-24 23:36:55 +00:00
require_once('Zotlabs/Web/WebServer.php');
2016-05-24 23:36:55 +00:00
$server = new WebServer();
$server->run();
2010-07-01 23:48:07 +00:00