Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuresh committed Oct 31, 2023
1 parent 871b7ee commit cd5364a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ func main() {

// /hello endpoint
http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, NIBM! \nThis is endpoint 2\n")
fmt.Fprintf(w, "Hello, UOR! \nThis is endpoint 2\n")
})



fmt.Println("Starting UOR API Server...")
fmt.Println("Listening on :8080")
http.ListenAndServe(":8080", nil)
}
}

0 comments on commit cd5364a

Please sign in to comment.