Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
├── ...
```