cityuni-webserver/pageHandler/page-provider.go

11 lines
221 B
Go
Raw Normal View History

package pageHandler
import "net/url"
type PageProvider interface {
GetPath() string
GetSupportedURLParameters() []string
GetContents(urlParameters url.Values) (contentType string, contents []byte)
PurgeTemplate()
}