mirror of
https://github.com/foomo/squadron.git
synced 2025-10-16 12:35:42 +00:00
8 lines
129 B
Go
8 lines
129 B
Go
package template
|
|
|
|
type Vars map[string]interface{}
|
|
|
|
func (tv *Vars) Add(name string, value interface{}) {
|
|
(*tv)[name] = value
|
|
}
|