<?php

use Todos\App;
require_once 'autoload.php';
if (file_exists('vendor/autoload.php')) {
    require_once 'vendor/autoload.php';
}
App::create(array('default_controller' => 'tasks', 'default_action' => 'index', 'template' => 'default', 'root_dir' => __DIR__));
 public function __construct()
 {
     $rootDir = \Todos\App::getInstance()->getConfig('root_dir');
     $template = \Todos\App::getInstance()->getConfig('template');
     $this->templates = new \League\Plates\Engine($rootDir . '/Template/' . $template);
 }