Files
BitSrunLoginGo/internal/pkg/dns/util/config.go
2023-03-01 18:58:38 +08:00

10 lines
185 B
Go

package dnsUtil
import (
"github.com/mitchellh/mapstructure"
)
func DecodeConfig(conf map[string]interface{}, output interface{}) error {
return mapstructure.Decode(conf, output)
}