A simple web crawler written in Go that fetches the HTML content of a given URL.
To run the crawler, provide a starting URL as a command-line argument.
go run main.go <your-starting-url>Example:
go run main.go https://example.comYou can build the project using the provided Makefile:
make buildThis will create an executable named crawler and run it against a default URL.
To run the test suite:
make test