mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
* Allow editing of backups * pint updates * setup of backup download * allow download for local backup files * delete uploaded files on delete of BackupFile * pint updates * S3 upload & download fixes * Deletion of backup files * support $ARCH selector for s3 installation * delete files when deleting backup * fixed ui issue * adjustment * Use system temp path for downloads --------- Co-authored-by: Saeed Vaziry <mr.saeedvaziry@gmail.com>
18 lines
316 B
PHP
18 lines
316 B
PHP
<?php
|
|
|
|
namespace App\StorageProviders;
|
|
|
|
use App\Models\Server;
|
|
use App\SSH\Storage\Storage;
|
|
|
|
interface StorageProvider
|
|
{
|
|
public function validationRules(): array;
|
|
|
|
public function credentialData(array $input): array;
|
|
|
|
public function connect(): bool;
|
|
|
|
public function ssh(Server $server): Storage;
|
|
}
|