From c54ff701bdf733cb4a23488f02dbfa9713b89579 Mon Sep 17 00:00:00 2001 From: Cuong Manh Le Date: Fri, 8 May 2026 15:13:46 +0700 Subject: [PATCH] internal/router/dnsmasq: use text/template instead of html/template Since this is a plain-text config, not html. --- internal/router/dnsmasq/dnsmasq.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/router/dnsmasq/dnsmasq.go b/internal/router/dnsmasq/dnsmasq.go index 058b0b5..61b321d 100644 --- a/internal/router/dnsmasq/dnsmasq.go +++ b/internal/router/dnsmasq/dnsmasq.go @@ -2,11 +2,11 @@ package dnsmasq import ( "errors" - "html/template" "net" "os" "path/filepath" "strings" + "text/template" "github.com/Control-D-Inc/ctrld" )