summaryrefslogtreecommitdiff
path: root/protected/autoload.php
blob: 39efbae5ea4a1578b8793aab08c8e64d97f2ae85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

function logging($content){
    $file = dirname(__FILE__).'/log.txt';
    file_put_contents($file, $content, FILE_APPEND | LOCK_EX);
}


require_once "Async.php";
require_once "Cache.php";
require_once "Settings.php";
require_once "Video.php";


Settings::setConfigs();