Go Boilerplate Essentials
Coming Soon
This section is coming soon. Stay tuned for updates!
Architecture

So let's talk about that architecture a bit more.
The Go Boilerplate is designed to be a solid foundation for building web applications in Go.
It follows a modular architecture that allows you to easily add or remove components as needed.
The main entry point is always going to be a command via the cmd
folder.
Regardless of the command you run, the sequence of execution happens in proc
(process) folder. That way we can keep the cmd
logic thin and easy to extend if needed.
From that point on, all cross cutting components like the database client for instance would have been loaded and initialized,
leaving the final layer of execution to be the actual path of the command chosen, such as
an http server a worker or a task.
Contacts
Essentials
requird headers.
- Content-Type: application/json
- Accept: application/json