服务列表中增加“检查域名解析”选项

This commit is contained in:
GoEdgeLab
2020-12-23 10:31:00 +08:00
parent 24fb98899e
commit f0709b5d14
6 changed files with 276 additions and 20 deletions

12
internal/utils/recover.go Normal file
View File

@@ -0,0 +1,12 @@
package utils
import (
"runtime/debug"
)
func Recover() {
e := recover()
if e != nil {
debug.PrintStack()
}
}