mirror of https://github.com/Xhofe/alist
20 lines
222 B
Go
20 lines
222 B
Go
![]() |
package driver
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type LinkArgs struct {
|
||
|
IP string
|
||
|
Header http.Header
|
||
|
}
|
||
|
|
||
|
type Link struct {
|
||
|
URL string
|
||
|
Header http.Header
|
||
|
Data io.ReadCloser
|
||
|
Status int
|
||
|
FilePath string
|
||
|
}
|