This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/index.php

16 lines
201 B
PHP
Executable File

<?php
namespace Zotlabs\Web;
/**
* @file index.php
*
* @brief The main entry point to the application.
*/
require_once('Zotlabs/Web/WebServer.php');
$server = new WebServer();
$server->run();