// The only purpose of this package is to define the Page interface // that is used by the `http` package package page import ( "io" ) type Page interface { Render(io.Writer) error RebuildIndex() error SetVars(map[string]interface{}) }