2023-06-22 18:10:30 +00:00
|
|
|
<?php
|
2023-06-23 07:44:48 +00:00
|
|
|
|
2023-06-22 18:10:30 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\RePod\AppInfo;
|
|
|
|
|
|
|
|
use OCP\AppFramework\App;
|
|
|
|
|
2023-06-24 16:37:25 +00:00
|
|
|
class Application extends App
|
|
|
|
{
|
2023-06-22 18:10:30 +00:00
|
|
|
public const APP_ID = 'repod';
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct(self::APP_ID);
|
|
|
|
}
|
|
|
|
}
|