go-proxy-bingai/api/chathub.go

11 lines
207 B
Go
Raw Normal View History

2023-05-04 11:29:40 +08:00
package api
import (
"adams549659584/go-proxy-bingai/common"
"net/http"
)
func ChatHub(w http.ResponseWriter, r *http.Request) {
common.NewSingleHostReverseProxy(common.BING_CHAT_URL).ServeHTTP(w, r)
}