fbd3b1cb30
Directory structure, minimal skeleton files (info.xml, Application.php, routes.php, templates, Vue entry point), and requirements doc. No implementation yet. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
262 B
PHP
15 lines
262 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use OCP\Util;
|
|
|
|
$appId = OCA\Mitgliederverwaltung\AppInfo\Application::APP_ID;
|
|
Util::addScript($appId, $appId . '-main');
|
|
Util::addStyle($appId, 'main');
|
|
?>
|
|
|
|
<div id="app-content">
|
|
<div id="mitgliederverwaltung"></div>
|
|
</div>
|