mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 04:38:09 +01:00
13 lines
No EOL
232 B
PHP
13 lines
No EOL
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);
|
|
}
|
|
} |