Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created May 24, 2023 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eminetto/70c8597ca7340abc90c424f718a9ca56 to your computer and use it in GitHub Desktop.
Save eminetto/70c8597ca7340abc90c424f718a9ca56 to your computer and use it in GitHub Desktop.
├── README.md
├── go.mod
├── go.sum
├── cmd
│ ├── api
│ │ └── main.go
│ └── appctl
│ └── main.go
├── config
│ ├── config.go
├── book
│ ├── book.go
│ ├── service.go
│ ├── service_test.go
│ ├── mock
│ │ ├── service.go
│ │ ├── repository.go
│ ├── postgres
│ │ ├── book_storage.go
│ │ ├── book_storage_test.go
├── internal
│ ├── http
│ ├── gin
│ ├── handler.go
| ├── book.go
│ ├── book_test.go
│ ├── event
│ │ ├── event.go
│ │ └── event_test.go
│ │ │── kafka
│ │ ├── event.go
│ │ ├── event_test.go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment