# articleGenerateTool **Repository Path**: boyane/article-generate-tool ## Basic Information - **Project Name**: articleGenerateTool - **Description**: 文章生成工具 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-06 - **Last Updated**: 2025-08-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ErgoGo 一个API开发框架,体型小巧功能强大,有完善的基础处理功能,简单易懂,快速上手。 ## 运行 ```shell go mod tidy # win平台编译 set GOOS=windows&& set GOARCH=amd64 && go build -o tool.exe # linux平台编译 GOOS=windows GOARCH=amd64 go build -o tool.exe main.go # 运行 go run main.go serve # 或者 go run . ``` ## 程序结构 ```shell ├── bootstrap ├── config ├── go.mod ├── internal ├── main.go ├── pkg ├── README.md └── router # bootstrap 程序初始化目录 # config 配置信息目录 # router 路由 # pkg 公共辅助包 # internal 程序具体逻辑代码 # main.go 程序入口 # tmp air 的工作目录 # .env 环境变量文件 ```