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
- Host: GitHub
- URL: https://github.com/arronf2e/gin-blog
- Owner: arronf2e
- Created: 2020-04-16T23:38:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-17T08:54:48.000Z (about 6 years ago)
- Last Synced: 2025-04-01T16:18:39.336Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!