├── .gitignore ├── README.mkd ├── go.mod └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | fff 2 | urls 3 | *.sw* 4 | hosts 5 | index 6 | test 7 | -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/fff/HEAD/README.mkd -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/fff/HEAD/go.mod -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/fff/HEAD/main.go --------------------------------------------------------------------------------