13 lines
158 B
Go
13 lines
158 B
Go
package structures
|
|
|
|
type Response struct {
|
|
Url string
|
|
Content []byte
|
|
Err error
|
|
}
|
|
|
|
type Request struct {
|
|
Url string
|
|
Response chan Response
|
|
}
|