mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-07-19 01:48:42 +08:00
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
|
||
|
}
|