Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
utkuufuk committed Apr 16, 2022
1 parent 1f13869 commit ddce29e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ func main() {
client := github.GetClient()
http.HandleFunc("/entrello", handleGetRequest(client.FetchAssignedIssues))
http.HandleFunc("/entrello/prlo", handleGetRequest(client.FetchOtherPullRequests))
http.HandleFunc("/entrello/prlme", handleGetRequest(client.FetchMyPullRequests))
http.HandleFunc("/entrello/prlmy", handleGetRequest(client.FetchOtherPullRequestsAssignedToMe))
http.HandleFunc("/entrello/prlme", handleGetRequest(client.FetchOtherPullRequestsAssignedToMe))
http.HandleFunc("/entrello/prlmy", handleGetRequest(client.FetchMyPullRequests))
http.ListenAndServe(fmt.Sprintf(":%d", config.Port), nil)
}

Expand Down

0 comments on commit ddce29e

Please sign in to comment.