<?php
namespace App\Controller;
use LaunchPad\Bundle\LaunchPadBundle\Base\Service\OTP\OTPService;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class DefaultController extends AbstractController
{
/**
* @Route("/");
*/
public function index()
{
return new JsonResponse(['welcome' => true]);
}
}