This repository has been archived on 2024-06-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
sakura/sakura.php

16 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');