aboutsummaryrefslogtreecommitdiff
path: root/database.go
diff options
context:
space:
mode:
Diffstat (limited to 'database.go')
-rw-r--r--database.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/database.go b/database.go
index 47a8918..87dfb4c 100644
--- a/database.go
+++ b/database.go
@@ -2,7 +2,6 @@ package main
import (
"bytes"
- "fmt"
"io/ioutil"
"log"
"net/http"
@@ -67,12 +66,6 @@ func (d *database) WriteConfig(file string, old, new []byte) error {
return nil
}
-func (d *database) ReadCache(file string) ([]byte, error) {
- return nil, fmt.Errorf("cache is not implemented")
-}
-
-func (d *database) WriteCache(file string, data []byte) {}
-
func (d *database) Log(msg string) {
log.Printf(msg)
}