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 (
"errors"
"html/template"
"net"
"os"
"path/filepath"
"strings"
"text/template"
"github.com/Control-D-Inc/ctrld"
)