UNPKG

@sync-in/server

Version:

The secure, open-source platform for file storage, sharing, collaboration, and sync

41 lines (40 loc) 1.7 kB
/* * Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com> * This file is part of Sync-in | The open source file sync and share solution * See the LICENSE file for licensing details */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "WebDAVModule", { enumerable: true, get: function() { return WebDAVModule; } }); const _common = require("@nestjs/common"); const _webdavprotocolguard = require("./guards/webdav-protocol.guard"); const _webdavmethodsservice = require("./services/webdav-methods.service"); const _webdavspacesservice = require("./services/webdav-spaces.service"); const _webdavcontroller = require("./webdav.controller"); function _ts_decorate(decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; } let WebDAVModule = class WebDAVModule { }; WebDAVModule = _ts_decorate([ (0, _common.Module)({ controllers: [ _webdavcontroller.WebDAVController ], providers: [ _webdavprotocolguard.WebDAVProtocolGuard, _webdavmethodsservice.WebDAVMethods, _webdavspacesservice.WebDAVSpaces ] }) ], WebDAVModule); //# sourceMappingURL=webdav.module.js.map