Http server and structures ready

This commit is contained in:
Senad Uka
2020-03-16 22:24:37 +01:00
parent 203db78950
commit 62f2e7c3fd
3 changed files with 132 additions and 0 deletions

12
structures/structures.go Normal file
View File

@@ -0,0 +1,12 @@
package structures
type Response struct {
Url string
Content []byte
Err error
}
type Request struct {
Url string
Response chan Response
}