Skip to content

senkenn/clean-architecture-go-example

Repository files navigation

Clean Architecture Go Example

Clean Architecture

https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html

https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html

Usage

  • Create a student.

    $ curl -d '{"id":0,"name":"Alice"}' localhost:8080/students
    {"message":"Student created successfully"}
  • Find a student by ID.

    $ curl localhost:8080/students/0
    {"ID":0,"Name":"Alice"}
    
    $ curl localhost:8080/students/1
    {"message":"Student not found"}

TODOs

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages