conf

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 8, 2024 License: MIT Imports: 9 Imported by: 0

README

conf

Parsing yaml, json, toml configuration files to go struct.


Example of use

    import "gitee.com/yzsunjianguo/common_pkg/conf"

    // Way 1: No listening profile
    config := &App{}
    err := conf.Parse("test.yml", config)

    // Way 2: Enable listening profile
    config := &App{}
    fs := []func(){
        func() {
            fmt.Println("Listening for updates to the configuration file")
        },
    }
    err := conf.Parse("test.yml", config, fs...)

Documentation

Overview

Package conf is parsing yaml, json, toml configuration files to go struct.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Parse

func Parse(configFile string, obj interface{}, fs ...func()) error

Parse configuration files to struct, including yaml, toml, json, etc., and turn on listening for configuration file changes if fs is not empty

func ParseConfigData

func ParseConfigData(data []byte, format string, obj interface{}) error

ParseConfigData parse data to struct

func Show

func Show(obj interface{}, fields ...string) string

Show print configuration information (hide sensitive fields)

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL