Pico/index.php
Daniel Rudolf cdef7a6324 Explicitly treat relative paths to be relative to Picos root dir
This tempers the BC break, we can now recommend to simply remove the ROOT_DIR part
2015-10-01 15:14:45 +02:00

10 lines
152 B
PHP

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