├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── main.go ├── main_test.go └── static ├── about.html ├── contact.html ├── courses.html ├── home.html └── images └── golang-website.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/iam-veeramalla/go-web-app 2 | 3 | go 1.22.5 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/main_test.go -------------------------------------------------------------------------------- /static/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/static/about.html -------------------------------------------------------------------------------- /static/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/static/contact.html -------------------------------------------------------------------------------- /static/courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/static/courses.html -------------------------------------------------------------------------------- /static/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/static/home.html -------------------------------------------------------------------------------- /static/images/golang-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/go-web-app/HEAD/static/images/golang-website.png --------------------------------------------------------------------------------