├── .gitignore ├── LICENSE ├── README.md ├── biu.gif ├── biu.go ├── filerefmap ├── filenode.go ├── filerefmap.go ├── filerefmap_test.go └── filetype.go ├── injectfs.go ├── make.sh ├── notify.go ├── reffinder ├── reffinder.go └── reffinder_test.go ├── setting └── setting.go └── watcher.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/README.md -------------------------------------------------------------------------------- /biu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/biu.gif -------------------------------------------------------------------------------- /biu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/biu.go -------------------------------------------------------------------------------- /filerefmap/filenode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/filerefmap/filenode.go -------------------------------------------------------------------------------- /filerefmap/filerefmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/filerefmap/filerefmap.go -------------------------------------------------------------------------------- /filerefmap/filerefmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/filerefmap/filerefmap_test.go -------------------------------------------------------------------------------- /filerefmap/filetype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/filerefmap/filetype.go -------------------------------------------------------------------------------- /injectfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/injectfs.go -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/make.sh -------------------------------------------------------------------------------- /notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/notify.go -------------------------------------------------------------------------------- /reffinder/reffinder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/reffinder/reffinder.go -------------------------------------------------------------------------------- /reffinder/reffinder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/reffinder/reffinder_test.go -------------------------------------------------------------------------------- /setting/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/setting/setting.go -------------------------------------------------------------------------------- /watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWinds/biu/HEAD/watcher.go --------------------------------------------------------------------------------