yao/sui/core/render.go
2023-11-20 13:20:02 +08:00

6 lines
168 B
Go

package core
// Render render for the html
func (page *Page) Render(html string, data map[string]interface{}, warnings []string) (string, error) {
return html, nil
}