mirror of
https://github.com/alist-org/alist.git
synced 2026-07-21 21:14:07 +08:00
8 lines
184 B
Go
8 lines
184 B
Go
package driver
|
|
|
|
// ProxyDriver lets a driver override the default "must proxy" download behavior
|
|
// on a per-storage basis.
|
|
type ProxyDriver interface {
|
|
ShouldProxyDownloads() bool
|
|
}
|