File tree Expand file tree Collapse file tree 1 file changed +50
-1
lines changed
Expand file tree Collapse file tree 1 file changed +50
-1
lines changed Original file line number Diff line number Diff line change 1- ## Go simple api
1+ ## Simple api
22
33Implementation 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
You can’t perform that action at this time.
0 commit comments