23 lines
284 B
Go
23 lines
284 B
Go
package structures
|
|
|
|
type Response struct {
|
|
Url string
|
|
Content []byte
|
|
Err error
|
|
}
|
|
|
|
type Request struct {
|
|
Url string
|
|
Response chan Response
|
|
}
|
|
|
|
type WorkerDescription struct {
|
|
Ip string
|
|
Req chan Request
|
|
}
|
|
|
|
type ProxyServer struct {
|
|
Type string
|
|
Address string
|
|
}
|