This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/sakura.php

17 lines
311 B
PHP

<?php
/*
* Community Management System
* (c) 2013-2016 Julian van de Groep <http://flash.moe>
*/
namespace Sakura;
require_once 'vendor/autoload.php';
ExceptionHandler::register();
Config::load(path('config/config.ini'));
DB::connect(config('database'));
Router::init();
include_once path('routes.php');