Skip to content

Commit

Permalink
Merge pull request #500 from carl-pki/clipboard
Browse files Browse the repository at this point in the history
bug: add clipboard request reverse proxy
  • Loading branch information
vania-pooh authored Oct 19, 2022
2 parents bd7acd1 + ed9e657 commit 626c032
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ func mux(sse *sse.SseBroker) http.Handler {
mux.HandleFunc("/wd/hub/", func(w http.ResponseWriter, r *http.Request) {
reverseProxy(webdriverURI).ServeHTTP(w, r)
})
mux.HandleFunc("/clipboard/", func(w http.ResponseWriter, r *http.Request) {
reverseProxy(webdriverURI).ServeHTTP(w, r)
})
return mux
}

Expand Down

0 comments on commit 626c032

Please sign in to comment.