This commit is contained in:
Jonathan Treffler 2023-05-17 21:09:36 +02:00
parent 3c8db1d872
commit 27239be8c6
8 changed files with 4028 additions and 1 deletions

View file

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