aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-12-17 19:30:03 +0900
committernsfisis <nsfisis@gmail.com>2024-12-17 19:30:03 +0900
commita3cb00e5ae96ba92333746746b1e224ddc726145 (patch)
treec3c398fc02110455c1468be3e56f1e121d59c19f /main.go
parent08fafa7282ac9cff372718d11ca53dd2764219fb (diff)
downloadfeedaka-a3cb00e5ae96ba92333746746b1e224ddc726145.tar.gz
feedaka-a3cb00e5ae96ba92333746746b1e224ddc726145.tar.zst
feedaka-a3cb00e5ae96ba92333746746b1e224ddc726145.zip
fix: fix invalid escape as html
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 288e295..018a4b2 100644
--- a/main.go
+++ b/main.go
@@ -5,13 +5,13 @@ import (
"database/sql"
"embed"
"fmt"
+ "html/template"
"io"
"log"
"net/http"
"os"
"strconv"
"strings"
- "text/template"
"time"
"github.com/hashicorp/go-multierror"