Add winiphlpapi

This commit is contained in:
世界 2025-01-29 19:59:59 +08:00
parent 2b41455f5a
commit ea0ac932ae
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 780 additions and 4 deletions

View file

@ -1,16 +1,14 @@
//go:build windows
package windnsapi
import (
"runtime"
"testing"
"github.com/stretchr/testify/require"
)
func TestDNSAPI(t *testing.T) {
if runtime.GOOS != "windows" {
t.SkipNow()
}
t.Parallel()
require.NoError(t, FlushResolverCache())
}