mirror of
https://github.com/fatedier/frp.git
synced 2024-11-15 12:34:29 +01:00
16 lines
253 B
Go
16 lines
253 B
Go
package tests
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func StartHttpServer() {
|
|
http.HandleFunc("/", request)
|
|
http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", 10702), nil)
|
|
}
|
|
|
|
func request(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte(HTTP_RES_STR))
|
|
}
|