Removed monolith server folder/files.

Currently just an api, will look into this down the line as if/when I
want to add a browser ui maybe it will be a seperate project
This commit is contained in:
2026-04-29 09:18:23 +02:00
parent df03a58f0c
commit e5537a76d3
6 changed files with 0 additions and 650 deletions
-14
View File
@@ -1,14 +0,0 @@
package web
import "net/http"
type HomeData struct {
Title string
}
func (s *Server) handleHome() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
data := HomeData{Title: "NFeeder"}
view(w, r, "home", data)
}
}
-1
View File
@@ -1 +0,0 @@
package web