repod/templates/main.php
Michel Roux 157e75b2f4
All checks were successful
repod / xml (push) Successful in 24s
repod / php (push) Successful in 2m1s
repod / nodejs (push) Successful in 1m25s
repod / release (push) Has been skipped
fix: 🎨 forgot strict mode on templates
2025-02-03 15:30:23 +00:00

14 lines
246 B
PHP

<?php
declare(strict_types=1);
use OCA\RePod\AppInfo\Application;
use OCP\Util;
Util::addScript(Application::APP_ID, Application::APP_ID.'-main');
Util::addStyle(Application::APP_ID, Application::APP_ID.'-main');
?>
<div id="content"></div>