Files
ddns-updater/internal/models/html.go
Quentin McGaw (desktop) db301af7d5 Apply WhistleMaster's comments
2020-02-22 23:42:05 +00:00

20 lines
459 B
Go

package models
// HTMLData is a list of HTML fields to be rendered.
// It is exported so that the HTML template engine can render it.
type HTMLData struct {
Rows []HTMLRow
}
// HTMLRow contains HTML fields to be rendered
// It is exported so that the HTML template engine can render it.
type HTMLRow struct {
Domain HTML
Host HTML
Provider HTML
IPMethod HTML
Status HTML
CurrentIP HTML
PreviousIPs HTML
}