Initial import of f7support application.

This commit is contained in:
root
2026-05-05 11:01:54 +03:00
commit 1a58baebb2
7 changed files with 915 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
namespace OCA\F7Support;
use OCP\AppFramework\App;
class Application extends App {
public const APP_ID = 'f7support';
public function __construct(array $urlParams = []) {
parent::__construct(self::APP_ID, $urlParams);
}
}