We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f13869 commit ddce29eCopy full SHA for ddce29e
cmd/server/main.go
@@ -15,8 +15,8 @@ func main() {
15
client := github.GetClient()
16
http.HandleFunc("/entrello", handleGetRequest(client.FetchAssignedIssues))
17
http.HandleFunc("/entrello/prlo", handleGetRequest(client.FetchOtherPullRequests))
18
- http.HandleFunc("/entrello/prlme", handleGetRequest(client.FetchMyPullRequests))
19
- http.HandleFunc("/entrello/prlmy", handleGetRequest(client.FetchOtherPullRequestsAssignedToMe))
+ http.HandleFunc("/entrello/prlme", handleGetRequest(client.FetchOtherPullRequestsAssignedToMe))
+ http.HandleFunc("/entrello/prlmy", handleGetRequest(client.FetchMyPullRequests))
20
http.ListenAndServe(fmt.Sprintf(":%d", config.Port), nil)
21
}
22
0 commit comments