blob: a562259b93fe1a8650d0b095163fa831294aced3 (
plain)
1
2
3
4
5
6
7
8
|
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
export const loadState = function(app: string, key: string, fallback?: any) {
return fallback
}
|