mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 18:31:36 +00:00
13 lines
144 B
PHP
13 lines
144 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class StorageProvider
|
|
{
|
|
const DROPBOX = 'dropbox';
|
|
|
|
const FTP = 'ftp';
|
|
|
|
const LOCAL = 'local';
|
|
}
|