package types import ( "database/sql" "net/http" "time" "{{ service_repo }}/args" ) type RequestContext struct { DBConn *sql.DB Args *args.Arguments Id string Start time.Time TemplateData *map[string]interface{} } type BannerMessages struct { Messages []string } type Continuation func(*RequestContext, *http.Request, http.ResponseWriter) ContinuationChain type ContinuationChain func(Continuation, Continuation) ContinuationChain