mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 15:06:06 +00:00
12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
if (empty($_GET['entryPoint'])) {
|
|
include "main.html";
|
|
} else {
|
|
include "bootstrap.php";
|
|
|
|
$app = new \Espo\Core\Application();
|
|
$app->runEntryPoint($_GET['entryPoint']);
|
|
}
|
|
|