mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
315 B
21 lines
315 B
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
var (
|
|
PORT int64 = 10702
|
|
HTTP_RES_STR string = "Hello World"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/", request)
|
|
http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", PORT), nil)
|
|
}
|
|
|
|
func request(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte(HTTP_RES_STR))
|
|
}
|