Categorygithub.com/kicodelibrary/go-http-server-2024
modulepackage
0.0.0-20240908134704-1c9579c590f0
Repository: https://github.com/kicodelibrary/go-http-server-2024.git
Documentation: pkg.go.dev

# 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.

# Packages

Package api provides API messages.
No description provided by the author

# Structs

Config is the configuration for the application.