10 lines
132 B
Go
10 lines
132 B
Go
package tool
|
|
|
|
import "html/template"
|
|
|
|
type SiteConfig struct {
|
|
ImageURL []string
|
|
Styles template.HTML
|
|
Template template.HTML
|
|
}
|