12 lines
178 B
Go
12 lines
178 B
Go
package svg
|
|
|
|
const KeyRegex string = `\{\{\s*(.*?)\s*\}\}`
|
|
|
|
type TemplateData struct {
|
|
Id string
|
|
Name string
|
|
TemplateKeys []string
|
|
}
|
|
|
|
var Storage SvgStorage
|