cityuni-webserver/pageHandler/page-provider.go

8 lines
172 B
Go
Raw Normal View History

package pageHandler
type PageProvider interface {
GetPath() string
GetContents(urlParameters map[string]string) (contentType string, contents []byte)
PurgeTemplate()
}