Files
old-kiviscraplib/structures/structures.go
2020-03-18 20:42:43 +01:00

18 lines
223 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
}