Add worker server / move timeout to 100 seconds

This commit is contained in:
Senad Uka
2020-03-18 20:42:43 +01:00
parent 62f2e7c3fd
commit 0882dc4b15
3 changed files with 95 additions and 3 deletions

View File

@@ -10,3 +10,8 @@ type Request struct {
Url string
Response chan Response
}
type WorkerDescription struct {
Ip string
Req chan Request
}