mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 12:40:28 +01:00
13 lines
232 B
PHP
13 lines
232 B
PHP
|
<?php
|
||
|
|
||
|
namespace OCA\OrganizationFolders\AppInfo;
|
||
|
|
||
|
use OCP\AppFramework\App;
|
||
|
|
||
|
class Application extends App {
|
||
|
public const APP_ID = 'organization_folders';
|
||
|
|
||
|
public function __construct() {
|
||
|
parent::__construct(self::APP_ID);
|
||
|
}
|
||
|
}
|