htmgo/framework/h/render.go

14 lines
229 B
Go

package h
import (
"fmt"
"time"
)
func Render(node Ren) string {
start := time.Now()
html := node.Render()
duration := time.Since(start)
fmt.Printf("render took %d microseconds\n", duration.Microseconds())
return html
}