feat: added modules

This commit is contained in:
Marvin Zhang
2024-06-14 16:37:48 +08:00
parent ca070cc788
commit 33a30e03ef
157 changed files with 5887 additions and 305 deletions

View File

@@ -0,0 +1,6 @@
package parser
type Parser interface {
Parse(template string) (err error)
Render(args ...interface{}) (content string, err error)
}