A comprehensive web server built in Go to demonstrate core language concepts and web development patterns.
-
Run the server:
go run main.go
-
Visit the application:
- Home page: http://localhost:8080
- About page: http://localhost:8080/about
curl http://localhost:8080/api/users
curl http://localhost:8080/api/health
curl -X POST http://localhost:8080/api/echo \
-H "Content-Type: application/json" \
-d '{"message": "Hello Go!", "test": true}'
Happy learning! ๐