├── .DS_Store ├── 01-hello-world ├── go.mod └── main.go ├── 02-primitive-datatypes └── main.go ├── 03-functions-and-methods └── main.go ├── 04-http-server ├── .DS_Store └── main.go ├── 05-http-server-mysql ├── go.mod ├── go.sum └── main.go ├── 06-http-using-gofr ├── configs │ └── .env ├── go.mod ├── go.sum └── main.go └── 07-http-sql-using-gofr ├── configs └── .env ├── go.mod ├── go.sum └── main.go /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/.DS_Store -------------------------------------------------------------------------------- /01-hello-world/go.mod: -------------------------------------------------------------------------------- 1 | module helloworld 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /01-hello-world/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/01-hello-world/main.go -------------------------------------------------------------------------------- /02-primitive-datatypes/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/02-primitive-datatypes/main.go -------------------------------------------------------------------------------- /03-functions-and-methods/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/03-functions-and-methods/main.go -------------------------------------------------------------------------------- /04-http-server/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/04-http-server/.DS_Store -------------------------------------------------------------------------------- /04-http-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/04-http-server/main.go -------------------------------------------------------------------------------- /05-http-server-mysql/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/05-http-server-mysql/go.mod -------------------------------------------------------------------------------- /05-http-server-mysql/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/05-http-server-mysql/go.sum -------------------------------------------------------------------------------- /05-http-server-mysql/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/05-http-server-mysql/main.go -------------------------------------------------------------------------------- /06-http-using-gofr/configs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/06-http-using-gofr/configs/.env -------------------------------------------------------------------------------- /06-http-using-gofr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/06-http-using-gofr/go.mod -------------------------------------------------------------------------------- /06-http-using-gofr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/06-http-using-gofr/go.sum -------------------------------------------------------------------------------- /06-http-using-gofr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/06-http-using-gofr/main.go -------------------------------------------------------------------------------- /07-http-sql-using-gofr/configs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/07-http-sql-using-gofr/configs/.env -------------------------------------------------------------------------------- /07-http-sql-using-gofr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/07-http-sql-using-gofr/go.mod -------------------------------------------------------------------------------- /07-http-sql-using-gofr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/07-http-sql-using-gofr/go.sum -------------------------------------------------------------------------------- /07-http-sql-using-gofr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umang01-hash/Basic-Go-Code/HEAD/07-http-sql-using-gofr/main.go --------------------------------------------------------------------------------