wip:(重构接口实现方式)

This commit is contained in:
zhengxinonly
2022-05-09 03:30:41 +08:00
parent 8760f21b03
commit 82de7b0273
11 changed files with 71 additions and 106 deletions
+18 -1
View File
@@ -117,4 +117,21 @@ flask init-db
```bash
flask run
```
```
## Git 贡献提交规范
- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
- `feat` 增加新功能
- `fix` 修复问题/BUG
- `style` 代码风格相关无影响运行结果的
- `perf` 优化/性能提升
- `refactor` 重构
- `revert` 撤销修改
- `test` 测试相关
- `docs` 文档/注释
- `chore` 依赖更新/脚手架配置修改等
- `workflow` 工作流改进
- `ci` 持续集成
- `types` 类型定义文件更改
- `wip` 开发中