# README
HTTP Server using Golang (2024 Edition)
This is the codebase for my Building better HTTP servers using Golang (2024 edition) course.
Contents
├── LICENSE
├── README.md
├── api
│ ├── response.go
│ ├── users.go
│ └── users_test.go
├── go.mod
├── go.sum
├── main.go
└── pkg
├── database
│ ├── database.go
│ ├── errors
│ │ └── errors.go
│ └── mock
│ └── mock.go
└── server
└── users
├── users.go
└── users_test.go
License
The contents of this repository is provides as-is under the terms of the Apache 2.0 license. Please check the LICENSE file for more information.