This commit is contained in:
spiritlhl
2024-11-07 12:57:58 +00:00
parent 66e3d32364
commit 1686f44bc1
3 changed files with 31 additions and 6 deletions

13
ipv6/ipv6_test.go Normal file
View File

@@ -0,0 +1,13 @@
package ipv6
import (
"fmt"
"testing"
)
func TestGetIPv6Mask(t *testing.T) {
ipv6Info, err := GetIPv6Mask("zh")
if err == nil {
fmt.Println(ipv6Info)
}
}