A basic Go web server handling static files and two endpoints: /hello and /form.
- Clone/download the repository.
- Ensure Go is installed.
- Navigate to the project directory.
- Run
go run main.goto start the server. - Access
http://localhost:8080in a browser to view served files.
/: Responds with "Static website!" content./hello: Responds with "hello!" to a GET request./form: Handles POST requests withnameandaddressparameters.
Uses standard Go net/http package.