Captain ALM
884c88525e
All checks were successful
continuous-integration/drone/push Build is passing
Add more values for the Go Info page.
15 lines
294 B
Go
15 lines
294 B
Go
package pageHandler
|
|
|
|
import (
|
|
"net/url"
|
|
"time"
|
|
)
|
|
|
|
type PageProvider interface {
|
|
GetPath() string
|
|
GetLastModified() time.Time
|
|
GetCacheIDExtension(urlParameters url.Values) string
|
|
GetContents(urlParameters url.Values) (contentType string, contents []byte, canCache bool)
|
|
PurgeTemplate()
|
|
}
|