12 lines
440 B
PHP
12 lines
440 B
PHP
<?php
|
|
|
|
if(!function_exists('app')) {
|
|
function app(): ?\CrocWork\Zappy\Application
|
|
{
|
|
return \CrocWork\Zappy\Application::getInstance();
|
|
}
|
|
}
|
|
|
|
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Helpers' . DIRECTORY_SEPARATOR . 'paths.php';
|
|
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Helpers' . DIRECTORY_SEPARATOR . 'views.php';
|
|
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Helpers' . DIRECTORY_SEPARATOR . 'translator.php'; |