diff --git a/stat.go b/stat.go deleted file mode 100644 index 18eb61e..0000000 --- a/stat.go +++ /dev/null @@ -1,19 +0,0 @@ -package dget - -import ( - "os" - "path/filepath" - - "github.com/boltdb/bolt" -) - -var cache *bolt.DB - -func initCache() error { - db, err := bolt.Open(filepath.Join(os.TempDir(), "fb-runner.db"), 0600, nil) - if err != nil { - return err - } - cache = db - return nil -}