mirror of
https://github.com/linuxserver/objectstorageapp.git
synced 2026-02-20 00:55:06 +08:00
23 lines
555 B
PHP
23 lines
555 B
PHP
<?php
|
|
/*
|
|
'objectstore' => array(
|
|
'class' => 'OCA\\ObjectStorageBackblaze\\ObjectStore\\Backblaze',
|
|
'arguments' => array(
|
|
'clientId' => 'username',
|
|
'applicationId' => 'Secr3tPaSSWoRdt7',
|
|
// the container to store the data in
|
|
'bucket' => 'nextcloud',
|
|
),
|
|
),
|
|
*/
|
|
|
|
namespace OCA\ObjectStorageApp\ObjectStore;
|
|
|
|
use OCP\Files\ObjectStore\IObjectStore;
|
|
use OCP\Files\StorageAuthException;
|
|
use OCP\Files\StorageNotAvailableException;
|
|
|
|
class Hubic implements IObjectStore {
|
|
|
|
}
|