conf

package
v0.0.0-...-a518d66 Latest Latest
Warning

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

Go to latest
Published: Sep 19, 2023 License: MIT Imports: 9 Imported by: 0

README

conf

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


Example of use

    import "gitee.com/jianguosun_admin/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 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