We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd7aa33 commit 95a15c7Copy full SHA for 95a15c7
cmd/portal-api/main.go
@@ -44,11 +44,7 @@ func main() {
44
45
router.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
46
w.WriteHeader(http.StatusOK)
47
- w.Write([]byte("Welcome to BDCOE Portal API"))
48
- })
49
-
50
- router.HandleFunc("GET /", func(w http.ResponseWriter, r *http.Request) {
51
- w.Write([]byte("Hello krish this side and server is up and running "))
+ w.Write([]byte("Welcome to BDCOE Portal API server is dockerized up and running"))
52
})
53
54
router.HandleFunc("POST /api/signup",users.New(storage))
0 commit comments