This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
modikai-dtool/utils/other_utils.go

11 lines
112 B
Go
Raw Permalink Normal View History

2023-06-26 15:58:04 +08:00
package utils
import (
"net"
)
func IsValidIP(ip string) bool {
res := net.ParseIP(ip)
return res != nil
2023-06-26 15:58:04 +08:00
}