├── .gitignore ├── LICENSE ├── README.md ├── cmd └── root.go ├── crawler ├── crawler.go └── map.go └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | out/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellhunter/gocewl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellhunter/gocewl/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellhunter/gocewl/HEAD/cmd/root.go -------------------------------------------------------------------------------- /crawler/crawler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellhunter/gocewl/HEAD/crawler/crawler.go -------------------------------------------------------------------------------- /crawler/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellhunter/gocewl/HEAD/crawler/map.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellhunter/gocewl/HEAD/main.go --------------------------------------------------------------------------------