1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| // Package controller - $PF_GENERATE_ONCE$ package controller
import ( "{{{ .Package }}}/app" "{{{ .Package }}}/app/controller/cutil" "{{{ .Package }}}/app/util" )
// Initialize system dependencies for the marketing site. func initSite(*app.State, util.Logger) { }
// Configure marketing site data for each request. func initSiteRequest(*app.State, *cutil.PageState) error { return nil }
|