Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zag13/gin-example
Gin example
https://github.com/zag13/gin-example
example gin
Last synced: 19 days ago
JSON representation
Gin example
- Host: GitHub
- URL: https://github.com/zag13/gin-example
- Owner: zag13
- Created: 2021-06-20T07:07:46.000Z (over 3 years ago)
- Default Branch: v0.2.x
- Last Pushed: 2021-09-09T07:11:51.000Z (over 3 years ago)
- Last Synced: 2024-11-14T14:20:31.744Z (about 1 month ago)
- Topics: example, gin
- Language: Go
- Homepage:
- Size: 759 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gin Example
**v0.1.x 主要参考项目 [blog-service](https://github.com/go-programming-tour-book/blog-service)**
**v0.2.x 主要参考项目 [kratos](https://github.com/go-kratos/kratos)**
**v0.3.x 主要参考项目 [photoprism](https://github.com/photoprism/photoprism) [picfit](https://github.com/thoas/picfit)**
## Directory Structure
```text
├── assets
│ ├── static
│ └── template
├── cmd
│ └── example
├── configs
├── docs
├── internal
│ ├── controllers
│ ├── middleware
│ ├── models
│ ├── services
│ ├── pkg
│ └── routes
├── pkg
│ ├── config
│ ├── database
│ ├── log
│ ├── routing
│ └── trace
├── storage
├── test
├── go.mod
├── go.sum
├── ...
```