cityuni-webserver/pageHandler/page-provider.go

15 lines
263 B
Go

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