mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-02 10:38:41 -04:00
20 lines
459 B
Go
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
|
|
}
|