15 lines
229 B
PHP
15 lines
229 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OCA\RePod\AppInfo;
|
||
|
|
||
|
use OCP\AppFramework\App;
|
||
|
|
||
|
class Application extends App {
|
||
|
public const APP_ID = 'repod';
|
||
|
|
||
|
public function __construct() {
|
||
|
parent::__construct(self::APP_ID);
|
||
|
}
|
||
|
}
|