mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 10:03:32 -04:00
21 lines
293 B
JavaScript
21 lines
293 B
JavaScript
|
|
/*
|
||
|
|
* Copyright (c) 2016 Vincent Petry <pvince81@owncloud.com>
|
||
|
|
*
|
||
|
|
* This file is licensed under the Affero General Public License version 3
|
||
|
|
* or later.
|
||
|
|
*
|
||
|
|
* See the COPYING-README file.
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
(function() {
|
||
|
|
if (!OCA.Comments) {
|
||
|
|
/**
|
||
|
|
* @namespace
|
||
|
|
*/
|
||
|
|
OCA.Comments = {};
|
||
|
|
}
|
||
|
|
|
||
|
|
})();
|
||
|
|
|