mirror of
https://github.com/nextcloud/server.git
synced 2026-06-16 20:19:48 -04:00
- Built the frontend in separate packages until we migrated everything to Vue 3. - Separate logic into two packages controlled by main package.json Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
export function createClient() {}
|
|
export function getPatcher() {
|
|
return {
|
|
patch: () => {},
|
|
}
|
|
}
|