Skip to content

Commit 98e1edb

Browse files
committed
feat(project): update readme
1 parent 8a4207a commit 98e1edb

File tree

1 file changed

+50
-1
lines changed

1 file changed

+50
-1
lines changed

README.md

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Go simple api
1+
## Simple api
22

33
Implementation api (Golang)
44

@@ -62,6 +62,55 @@ If you want to test endpoints. You can import this file in Postman
6262
## Structure
6363

6464
```
65+
.
66+
├── Dockerfile
67+
├── Makefile
68+
├── README.md
69+
├── cmd
70+
│   └── core
71+
│   ├── auth
72+
│   │   ├── controller.go
73+
│   │   ├── repository.go
74+
│   │   └── routes.go
75+
│   ├── main.go
76+
│   └── post
77+
│   ├── controller.go
78+
│   ├── repository.go
79+
│   └── routes.go
80+
├── config
81+
│   └── init.go
82+
├── docker-compose.yml
83+
├── docs
84+
│   ├── docs.go
85+
│   ├── swagger.json
86+
│   └── swagger.yaml
87+
├── go.mod
88+
├── go.sum
89+
└── utils
90+
├── constants
91+
│   ├── collections.go
92+
│   └── error-messages.go
93+
├── exception
94+
│   └── exception.go
95+
├── helpers
96+
│   ├── get-context-data.go
97+
│   └── get-context-userid.go
98+
├── middleware
99+
│   ├── base-auth-swagger.go
100+
│   ├── guard.go
101+
│   └── validator.go
102+
├── models
103+
│   ├── auth.go
104+
│   ├── error.go
105+
│   ├── post.go
106+
│   └── user.go
107+
├── schemas
108+
│   ├── post.go
109+
│   └── user.go
110+
├── server
111+
│   └── app.go
112+
└── services
113+
└── auth.go
65114
66115
```
67116

0 commit comments

Comments
 (0)