Pico/index.php
Daniel Rudolf fc7632b0ac Overhaul init of Pico
This may break BC if you're using one of the now deprecated constants (e.g. ROOT_DIR)
2015-10-01 15:05:50 +02:00

10 lines
185 B
PHP

<?php
require_once(__DIR__ . '/vendor/autoload.php');
$pico = new Pico(
__DIR__,
__DIR__ . '/config/',
__DIR__ . '/plugins/',
__DIR__ . '/themes/'
);
echo $pico->run();