mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
15 lines
166 B
PHP
15 lines
166 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class StorageProvider
|
|
{
|
|
const DROPBOX = 'dropbox';
|
|
|
|
const FTP = 'ftp';
|
|
|
|
const LOCAL = 'local';
|
|
|
|
const S3 = 's3';
|
|
}
|