Delete unnecessary front controllers

See flarum/core@cc4b259115
next-back
Franz Liedke 2017-06-30 12:22:28 +02:00
parent 6916205522
commit 18c1750f3a
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4
3 changed files with 1 additions and 33 deletions

View File

@ -1,16 +0,0 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require 'vendor/autoload.php';
$server = new Flarum\Admin\Server(__DIR__);
$server->listen();

16
api.php
View File

@ -1,16 +0,0 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require 'vendor/autoload.php';
$server = new Flarum\Api\Server(__DIR__);
$server->listen();

View File

@ -11,6 +11,6 @@
require 'vendor/autoload.php';
$server = new Flarum\Forum\Server(__DIR__);
$server = new Flarum\Http\Server(__DIR__);
$server->listen();