# fconfig **Repository Path**: hanquanding/fconfig ## Basic Information - **Project Name**: fconfig - **Description**: 读取文件配置文件 ############## import ("fconfig") - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-01-08 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #####读取文件配置文件 ```golang import ("fconfig") ``` ```golang type Config struct { Keyword string } ``` ```golang var config *Config err := fconfig.Load(configJsonFile, &config) if err != nil { panic(err) } fmt.Println(config) ```