mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 02:41:36 +00:00
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
11 lines
183 B
PHP
11 lines
183 B
PHP
<?php
|
|
|
|
namespace App\SSH\Storage;
|
|
|
|
interface Storage
|
|
{
|
|
public function upload(string $src, string $dest): array;
|
|
|
|
public function download(string $src, string $dest): void;
|
|
}
|