6 lines
168 B
Go
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
|
|
}
|