Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mengganti Method Http Pada Chapter 55.1 #235

Merged
merged 3 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/A-client-http-request-simple.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func fetchUsers() ([]student, error) {
var client = &http.Client{}
var data []student

request, err := http.NewRequest("POST", baseURL+"/users", nil)
request, err := http.NewRequest("GET", baseURL+"/users", nil)
if err != nil {
return nil, err
}
Expand Down
1 change: 1 addition & 0 deletions content/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Berikut merupakan *hall of fame* kontributor yang sudah berbaik hati menyisihkan
1. [Jono](https://github.com/josterand)
1. [Kiswono Prayogo](https://github.com/kokizzu)
1. [Lufri Rais Maulana](https://github.com/raismaulana)
1. [M Rafi Raihandika](https://github.com/mananispiwpiw)
1. [M. Ilham Syaputra](https://github.com/ilhamsyaputra)
1. [Ma'mur Rezeki](https://github.com/erzqy)
1. [MH Rohman Masyhar](https://github.com/rohmanhm)
Expand Down
Loading