0
0
Fork 0
mirror of https://github.com/verdigado/groupfolder_tags.git synced 2024-10-22 15:39:48 +02:00

added app class

This commit is contained in:
Jonathan Treffler 2024-07-31 10:40:28 +00:00
parent 605b7caeaa
commit 84008a3afb

View file

@ -0,0 +1,13 @@
<?php
namespace OCA\GroupfolderTags\AppInfo;
use OCP\AppFramework\App;
class Application extends App {
public const APP_ID = 'groupfolder_tags';
public function __construct() {
parent::__construct(self::APP_ID);
}
}