8 lines
120 B
Go
8 lines
120 B
Go
package main
|
|
|
|
type DownloadTask struct {
|
|
Url string
|
|
}
|
|
type DownloadRequest struct {
|
|
Link string `json:"link"`
|
|
} |