17 lines
363 B
PHP
17 lines
363 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
// SPDX-FileCopyrightText: Christian Bock <christian@death600.de>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace OCA\VereinMitglieder\AppInfo;
|
|
|
|
use OCP\AppFramework\App;
|
|
|
|
class Application extends App {
|
|
public const APP_ID = 'vereinmitglieder';
|
|
|
|
public function __construct() {
|
|
parent::__construct(self::APP_ID);
|
|
}
|
|
}
|