From c452c2c5784659436e0ab8775ecb69fe4d5ebe6a Mon Sep 17 00:00:00 2001 From: Alex Scerba Date: Tue, 11 Feb 2025 13:57:20 -0500 Subject: Implement feed handling --- cmd/http/main.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/http/main.go') diff --git a/cmd/http/main.go b/cmd/http/main.go index 951c02f..8f293d4 100644 --- a/cmd/http/main.go +++ b/cmd/http/main.go @@ -70,6 +70,7 @@ func main() { mux.HandleFunc("/blog/", app.blog) mux.HandleFunc("/archive", app.archive) mux.HandleFunc("/archive/", app.archive) + mux.HandleFunc("/atom.xml", app.feed) mux.HandleFunc("/", app.home) if *addr == ":443" { -- cgit v1.2.3