aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
blob: d47bda27e4d7be82de6cb8c8e46d623954e6ba81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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();