mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-02 19:19:20 +02:00
12 lines
109 B
Go
12 lines
109 B
Go
package debug
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func init() {
|
|
go func() {
|
|
http.ListenAndServe(":6060", nil)
|
|
}()
|
|
}
|