Files
ecs/port/port.go
spiritysdx ab91735695 update
2024-06-30 19:49:25 +08:00

14 lines
222 B
Go

package port
import (
"fmt"
"github.com/oneclickvirt/portchecker/email"
)
// 常用端口阻断检测 TCP/UDP/ICMP 协议
// 本包不在main中使用
func EmailCheck() {
res := email.EmailCheck()
fmt.Println(res)
}