Skip to content

simpleapples/go-clean-architecture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Clean Architecture Project

An example go project using the clean architecture.

Project Structure

.
├── README.md
├── adapters
│   ├── api
│   │   ├── api.go
│   │   └── http_api.go
│   └── db
│       ├── db.go
│       └── mysql_db.go
├── app
│   └── main.go
├── entities
│   └── article.go
├── go.mod
├── go.sum
├── scripts
│   ├── build.sh
│   └── run.sh
└── usecases
    ├── article.go
    └── usecases.go

Clean Architecture

Please read THIS BLOG from Robert C. Martin to know Clean Architecture.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages