Golang: 配置文件热重载 夜风 | 2024-11-09 0:01 | 38 | 0 | Golang,学习笔记,项目推荐 52 字 | 3 分钟 使用Viper+fsnotify实现 package bootstrap import ( "fmt" "log" "github.com/fsnotify/fsnotify" "github.com/spf13/viper" ) // 配置信息结构 type Config struct { Server struct { Version stri… fsnotifyviper