<?php
namespace Vend;
include($_SERVER['DOCUMENT_ROOT'] . '/php/Vend/Routes/RouteService.php');
use \Vend\Auth\AuthService;
use Vend\Routes\RouteService;
class VendController
{
private $route;
public function __construct()
{
$this->route = new RouteService();
}
public function index()
{
// Resolve route
return $this->route->resolve();
}
}