feat(server): 初始化HTTP服务器并添加产品数据结构

- 创建基础HTTP服务器,监听localhost:5000
- 实现StringHandle结构体处理HTTP请求
- 添加请求日志打印功能
- 忽略/favicon.ico请求并返回404状态
- 定义Product结构体及示例数据
- 实现产品税费计算和折扣应用方法
This commit is contained in:
2025-10-24 22:01:49 +08:00
parent 51c7ed5cbf
commit 84f29e3d48
4 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
module httpserver
go 1.22