mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-03 09:01:48 +08:00
20 lines
360 B
Go
20 lines
360 B
Go
package ini_conf
|
|
|
|
import "gopkg.in/ini.v1"
|
|
|
|
func GetIniValue(filePath, Group, Key string) (string, error) {
|
|
cfg, err := ini.Load(filePath)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
service, err := cfg.GetSection(Group)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
startKey, err := service.GetKey(Key)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return startKey.Value(), nil
|
|
}
|