home/internal/domain/site.go

17 lines
215 B
Go
Raw Normal View History

2023-11-07 22:28:18 +00:00
package domain
import (
"net/url"
2023-11-08 02:08:17 +00:00
"time"
2023-11-07 22:28:18 +00:00
)
type Site struct {
Language Language
BaseURL *url.URL
Params map[string]any
TimeZone *time.Location
File File
Title string
Resources Resources
2023-11-07 22:28:18 +00:00
}