2021-08-21 14:17:14 +00:00
|
|
|
<?php
|
|
|
|
|
2021-08-21 14:25:23 +00:00
|
|
|
namespace OCA\UPschooling\AppInfo;
|
2021-08-21 14:17:14 +00:00
|
|
|
|
|
|
|
use OCP\AppFramework\App;
|
|
|
|
|
|
|
|
class Application extends App {
|
2021-08-21 14:25:23 +00:00
|
|
|
public const APP_ID = 'upschooling';
|
2021-08-21 14:17:14 +00:00
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct(self::APP_ID);
|
|
|
|
}
|
|
|
|
}
|