* fix: update StoragePath method to return specific path for single file * feat: add Rclone storage support with configuration and file operations * docs: add Rclone support to documentation for configuration and usage
10 lines
187 B
Go
10 lines
187 B
Go
package storage
|
|
|
|
//go:generate go-enum --values --names --noprefix --flag --nocase
|
|
|
|
// StorageType
|
|
/* ENUM(
|
|
local, webdav, alist, minio, telegram, s3, rclone
|
|
) */
|
|
type StorageType string
|