mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08: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))
|
||
|
}
|