cmd/ctrld: add --iface for setting DNS on specific interface

This commit is contained in:
Cuong Manh Le
2023-01-20 21:43:03 +07:00
committed by Cuong Manh Le
parent d5344aea52
commit b00a7c34ee
13 changed files with 473 additions and 45 deletions
+13
View File
@@ -0,0 +1,13 @@
package resolvconffile
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestNameServers(t *testing.T) {
ns := NameServers("")
require.NotNil(t, ns)
t.Log(ns)
}