Skip to content

Commit cfd8fff

Browse files
committed
readme and comments clarificaiton
1 parent 92d5727 commit cfd8fff

File tree

2 files changed

+4
-21
lines changed

2 files changed

+4
-21
lines changed

Readme.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# boltfs - BoltDB filesystem
2-
The `boltfs` package implements the absfs FileSystem interface for the boltdb
3-
key/value database.
2+
The `boltfs` package implements the absfs Filer interface for the boltdb
3+
key/value database.
4+
5+
Work in progress.

boltfs.go

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,6 @@ import (
1616
bolt "github.com/coreos/bbolt"
1717
)
1818

19-
/*
20-
func (fs *Filer) Close() error
21-
func New(name string) (bfs *Filer, err error)
22-
func (fs *Filer) EvalPath(btx *bolt.Tx, path string) (id uint64, err error)
23-
func (bfs *Filer) OpenFile(path string, flags int, mode os.FileMode) (file absfs.File, err error)
24-
func (filer *Filer) Remove(path string) error
25-
func (filer *Filer) RemoveAll(path string) error
26-
func (filer *Filer) Stat(path string) (os.FileInfo, error)
27-
func (filer *Filer) Mkdir(path string, perm os.FileMode) error
28-
func (fs *Filer) MkdirAll(path string, perm os.FileMode) error
29-
func (filer *Filer) Chmod(name string, mode os.FileMode) (err error)
30-
func (filer *Filer) Chtimes(name string, atime time.Time, mtime time.Time) (err error)
31-
func (filer *Filer) Chown(name string, uid, gid int) (err error)
32-
func b2i(d []byte) uint32
33-
func i2b(n uint32) []byte
34-
func b2i64(d []byte) uint64
35-
func i2b64(n uint64) []byte
36-
*/
37-
3819
type Filer struct {
3920
db *bolt.DB
4021
rootId uint64

0 commit comments

Comments
 (0)