2016-05-11 19:29:10 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2024-06-06 09:55:47 +02:00
|
|
|
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2016-05-11 19:29:10 +01:00
|
|
|
*/
|
|
|
|
namespace OCA\Files_External\Lib\Config;
|
|
|
|
|
2019-11-22 20:52:10 +01:00
|
|
|
use OCA\Files_External\Lib\Backend\Backend;
|
2016-05-11 19:29:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provider of external storage backends
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
interface IBackendProvider {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 9.1.0
|
|
|
|
* @return Backend[]
|
|
|
|
*/
|
|
|
|
public function getBackends();
|
|
|
|
}
|