0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-12-06 11:22:41 +01:00

init app structure (fixes #1)

This commit is contained in:
Jonathan Treffler 2024-08-20 15:03:44 +02:00 committed by Jonathan Treffler
parent 0580b5efa9
commit c0e2ec9d2e
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?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);
}
}