15 lines
297 B
Go
15 lines
297 B
Go
package models
|
|
|
|
// TemplateData holds data sent from handlers to templates.
|
|
type TemplateData struct {
|
|
StringMap map[string]string
|
|
IntMap map[string]int
|
|
FloatMap map[string]float32
|
|
Data map[string]interface{}
|
|
CSRFToken string
|
|
Flash string
|
|
Warning string
|
|
Error string
|
|
}
|
|
|