Skip to content

Commit ddce29e

Browse files
committed
fix bug
1 parent 1f13869 commit ddce29e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/server/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ func main() {
1515
client := github.GetClient()
1616
http.HandleFunc("/entrello", handleGetRequest(client.FetchAssignedIssues))
1717
http.HandleFunc("/entrello/prlo", handleGetRequest(client.FetchOtherPullRequests))
18-
http.HandleFunc("/entrello/prlme", handleGetRequest(client.FetchMyPullRequests))
19-
http.HandleFunc("/entrello/prlmy", handleGetRequest(client.FetchOtherPullRequestsAssignedToMe))
18+
http.HandleFunc("/entrello/prlme", handleGetRequest(client.FetchOtherPullRequestsAssignedToMe))
19+
http.HandleFunc("/entrello/prlmy", handleGetRequest(client.FetchMyPullRequests))
2020
http.ListenAndServe(fmt.Sprintf(":%d", config.Port), nil)
2121
}
2222

0 commit comments

Comments
 (0)