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

https://github.com/arronf2e/gin-blog

Go-Gin-Blog-Service
https://github.com/arronf2e/gin-blog

Last synced: 8 months ago
JSON representation

Go-Gin-Blog-Service

Awesome Lists containing this project

README

          

# Go-Gin-Blog-Service

### 功能列表

- 用户注册与登录
- 添加/修改/删除 文章标签
- 添加/修改/删除 文章
- 获取文章列表

### 项目结构

```
├── README.md
├── apihelpers
│   └── response.go
├── config
│   └── db.go
├── controllers
│   └── post.go
├── go.mod
├── go.sum
├── main.go
├── models
│   ├── post.go
│   ├── tag.go
│   └── user.go
├── routers
│   └── routers.go
├── services
│   └── post.go
├── test
```

Let's Go!