├── .gitignore ├── LICENSE.txt ├── README.md ├── go.mod ├── mbr.go └── mbr_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekby/mbr/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekby/mbr/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/rekby/mbr 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /mbr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekby/mbr/HEAD/mbr.go -------------------------------------------------------------------------------- /mbr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekby/mbr/HEAD/mbr_test.go --------------------------------------------------------------------------------