# FastDevelopGo **Repository Path**: cnhuashao/fast-develop-go ## Basic Information - **Project Name**: FastDevelopGo - **Description**: 基于Golang的快速开发框架 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-12-26 - **Last Updated**: 2024-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: Go语言, 快速开发, Go快速开发 ## README # FastDevelopGo 基于Golang的快速开发框架,该框架定位于后端快速开发使用。 ## 1、简介 ## 2、目录结构 - conf ------------------ 配置文件 - deploy ------------------ 部署相关 - doc --------------------- 框架相关文档 - main ------------------- 初始入口 - router ------------------ 业务路由 - src ---------------------- 业务代码 - base ------------------ 框架基础模块 - config -------------------- 配置文件管理部分 - log ----------------------- 日志组件 - constant ------------------ 常量包 - begin ---------------------- 框架初始启动部分 - util ---------------------- 基础工具类部分 - static -------------------- 静态文件存放目录 - templates ------------------ web模板存放目录 - go.mod ---------------- 模块管理配置文件 ## 3、包含组件清单 | 组件名称 |作用描述| |------|---| | [viper](https://github.com/spf13/viper) |配置文件管理组件| | [zap](https://github.com/uber-go/zap)| 日志组件| | [gin](https://github.com/gin-gonic/gin)|HTTP web框架| ## 4、补充描述 框架中的每个组件部分都对应了独立的一个包目录,均存放在base包目录下,例如日志组件存放在log下,配置文件组件存放在config下,如果你想要替换其中的一个组件,只需要依据其中的iniXXX函数进行实现并替换相关begin中的引用即可。 ## 5、版权声明 [MIT License](https://gitee.com/cnhuashao/fast-develop-go/blob/master/LICENSE) ## 6、版本记录 ### v0.0.1 新增模块: 1、自定义配置文件快速读取模块 2、日志组件模块 ## 7、接口记录 这里用于记录该框架中提供的标准初始接口,用于基于该框架快速搭建一个项目来使用 ### 1、