├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md └── linkcheck.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SvenDowideit/linkcheck/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SvenDowideit/linkcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SvenDowideit/linkcheck/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SvenDowideit/linkcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SvenDowideit/linkcheck/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SvenDowideit/linkcheck/HEAD/README.md -------------------------------------------------------------------------------- /linkcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SvenDowideit/linkcheck/HEAD/linkcheck.go --------------------------------------------------------------------------------