-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
37 lines (30 loc) · 1.08 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package main
import (
"fmt"
"github.com/gorilla/mux"
"github.com/rennasccenth/Stone_GitHub_API_Golang/controllers"
"github.com/rennasccenth/Stone_GitHub_API_Golang/env"
"log"
"net/http"
)
func main() {
routerHandler := mux.NewRouter()
routerHandler.HandleFunc("/users/{user}/popular-repository",
controllers.GetUserMostStarredRepo).Methods(http.MethodGet)
routerHandler.HandleFunc("/users/{user}/repositories/{repository}/popular-issue",
controllers.GetUserMostCommentedOpenedIssue).Methods(http.MethodGet)
routerHandler.HandleFunc("/users/{user}/repositories/{repository}/open-pull-requests",
controllers.GetUserOpenedPullRequests).Methods(http.MethodGet)
serveOnDefaultPort(routerHandler)
}
// serveOnDefaultPort serves the handler on the port
// stored on .env as APPLICATION_PORT
func serveOnDefaultPort(handler http.Handler) {
applicationPort := env.Get("APPLICATION_PORT")
if applicationPort == "" {
applicationPort = "8080"
}
addr := fmt.Sprintf(":%s", applicationPort)
log.Printf("Subindo API na porta %s.", addr)
log.Fatal(http.ListenAndServe(addr, handler))
}