index.php 216 Bytes
Newer Older
Kulya's avatar
Kulya committed
1 2 3 4 5 6 7 8 9 10
<?php  session_start(); require __DIR__ . '/vendor/autoload.php';
global $ALVC;
$ALVC = new AloVoice\AloVoiceConnector();
if(!empty($_REQUEST['cmd'])){
	include("command.php");
}
else {
	$ALVC->run();  
}
?>