alist/internal/driver/link.go

20 lines
222 B
Go
Raw Normal View History

2022-06-06 13:48:53 +00:00
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
}