axios.ts 292 B

123456789
  1. /**
  2. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: AGPL-3.0-or-later
  4. */
  5. export default {
  6. get: async () => ({ status: 200, data: {} }),
  7. delete: async () => ({ status: 200, data: {} }),
  8. post: async () => ({ status: 200, data: {} }),
  9. }