android-automate-api/web/index.php

16 lines
290 B
PHP
Raw Permalink Normal View History

2018-01-11 14:16:19 +01:00
<?php
use App\Application;
2018-01-12 16:40:18 +01:00
use Symfony\Component\HttpFoundation\Request;
use App\Controller\SmsController;
2018-01-11 14:16:19 +01:00
require_once __DIR__.'/../vendor/autoload.php';
$app = new Application();
2018-01-12 16:40:18 +01:00
$app
->setRootDir(__DIR__.'/../')
->init()
->addController(new SmsController())
->run();