Fileserver/internal/util/data/layout.go
zervo cbc66c5651 Updates
A bunch of updatesss
2025-07-31 05:19:15 +02:00

13 lines
308 B
Go

package data
// LayoutData holds templating data for a layout.
type LayoutData struct {
// ServerName is the custom name of the server instance.
ServerName string
// ServerVersion is a string representing the server version.
ServerVersion string
// Page contains page/view-specific data.
Page any
}