Pull Pal

A digital assistant that writes code and collaborates with humans on git repositories.

For instructions on how to run and contribute, visit the Github repository.

mobyvb
Update files #5
Remove the /api/string endpoint. Add an endpoint to main.go at /api/number to return a random number between 20 and 50
Make the content section in index.html a different color from the background
Copy the information from the readme to index.html

Files: README.md,index.html,main.go
beep-boop
Working on it...
Update files #6
Remove the /api/string endpoint. Add an endpoint to main.go at /api/number to return a random number between 20 and 50
Make the content section in index.html a different color from the background
Copy the information from the readme to index.html

Resolves #5
- http.HandleFunc("/api/strings", func(w http.ResponseWriter, r *http.Request) {
- toReturn := "asdf"
- fmt.Fprint(w, toReturn)
- })
+ http.HandleFunc("/api/number", func(w http.ResponseWriter, r *http.Request) {
+ randomNumber := rand.Intn(31) + 20
+ fmt.Fprint(w, strconv.Itoa(randomNumber))
+ })
- func setHeaders(w *http.ResponseWriter) {
+ func setCustomHeaders(w *http.ResponseWriter) {
- backgroundColor = "white"
+ backgroundColor = "#f0f6fb"
- router.HandleFunc("/api/strings", stringHandler)
+ router.HandleFunc("/api/number", numberHandler)