Rename htmlpage to html

Because it's going to get more tools.
This commit is contained in:
Eli Ribble 2026-01-30 18:21:27 +00:00
parent 2bd848fa97
commit 9b1d75d47f
No known key found for this signature in database
44 changed files with 83 additions and 77 deletions

View file

@ -4,7 +4,7 @@ import (
"net/http"
"github.com/Gleipnir-Technology/nidus-sync/db/models"
"github.com/Gleipnir-Technology/nidus-sync/htmlpage"
"github.com/Gleipnir-Technology/nidus-sync/html"
)
type ContentTextMessages struct {
@ -24,5 +24,5 @@ func getTextMessages(w http.ResponseWriter, r *http.Request, u *models.User) {
content := ContentTextMessages{
User: userContent,
}
htmlpage.RenderOrError(w, textMessagesT, content)
html.RenderOrError(w, textMessagesT, content)
}