new file
This commit is contained in:
parent
e1911b7fb6
commit
54d6175318
3 changed files with 35 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
|||
.vscode
|
||||
.env
|
||||
.idea
|
||||
go_build_my_app
|
||||
|
|
|
|||
34
go/l19/l2.go
Normal file
34
go/l19/l2.go
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"encoding/json"
|
||||
"time"
|
||||
"bytes"
|
||||
"io"
|
||||
)
|
||||
|
||||
type UserStruct struct{
|
||||
Age int `json:"age"`
|
||||
Name string `json:"name"`
|
||||
Email string `json:"email"`
|
||||
}
|
||||
|
||||
func main() {
|
||||
user := UserStruct{
|
||||
Age: 66,
|
||||
Name: "Sergey",
|
||||
Email: "Likhodeev.60@mail.ru"
|
||||
}
|
||||
JsonData, err := json.Marshal(user)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
client := &http.Client(
|
||||
Timeout: 5 * time.Second,
|
||||
)
|
||||
req, err := http.NewRequest("POST", "http://127.0.0.1:7777/user", bytes.NewBuffer(JsonData))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
ELF
|
||||
Loading…
Reference in a new issue