mirror of
https://github.com/ShaYmez/ezservermonitor-web.git
synced 2024-11-16 05:11:55 -05:00
8 lines
128 B
PHP
8 lines
128 B
PHP
|
<?php
|
||
|
|
||
|
function eSMAutoload($class)
|
||
|
{
|
||
|
include __DIR__.'/libs/Utils/'.$class.'.php';
|
||
|
}
|
||
|
|
||
|
spl_autoload_register('eSMAutoload');
|