mirror of
https://github.com/nextcloud/maps.git
synced 2026-01-12 15:46:09 +00:00
23 lines
509 B
PHP
23 lines
509 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* Nextcloud - maps
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Julien Veyssier <eneiluj@posteo.net>
|
|
* @copyright Julien Veyssier 2019
|
|
*/
|
|
|
|
use OCP\App\IAppManager;
|
|
use OCP\Server;
|
|
|
|
require_once __DIR__ . '/../../../tests/bootstrap.php';
|
|
require_once __DIR__ . '/../../../lib/base.php';
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
|
|
Server::get(IAppManager::class)->loadApp('maps');
|