aboutsummaryrefslogtreecommitdiff
path: root/page/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'page/main.go')
-rw-r--r--page/main.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/page/main.go b/page/main.go
deleted file mode 100644
index da7feec..0000000
--- a/page/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// The only purpose of this package is to define the Page interface
-// that is used by the `http` package
-package page
-
-import (
- "io"
-)
-
-type Page interface {
- Render(io.Writer) error
- RebuildIndex() error
- SetVars(map[string]interface{})
-}