internal/router/dnsmasq: use text/template instead of html/template

Since this is a plain-text config, not html.
This commit is contained in:
Cuong Manh Le
2026-05-08 15:13:46 +07:00
committed by Cuong Manh Le
parent 33682e2312
commit c54ff701bd
+1 -1
View File
@@ -2,11 +2,11 @@ package dnsmasq
import ( import (
"errors" "errors"
"html/template"
"net" "net"
"os" "os"
"path/filepath" "path/filepath"
"strings" "strings"
"text/template"
"github.com/Control-D-Inc/ctrld" "github.com/Control-D-Inc/ctrld"
) )