streams/index.php

15 lines
193 B
PHP
Raw Normal View History

<?php
2016-05-24 23:36:55 +00:00
2022-02-16 04:08:28 +00:00
namespace Code\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
2022-02-16 04:08:28 +00:00
require_once 'Code/Web/WebServer.php';
2016-05-24 23:36:55 +00:00
$server = new WebServer();
$server->run();