An open API service indexing awesome lists of open source software.

https://github.com/icowan/config


https://github.com/icowan/config

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# config

## install

```bash
$ go get github.com/icowan/config
```

## use

```go
cfg, err = config.NewConfig(configPath)
if err != nil {
panic(err)
}

cfg.GetString("mysql", "host")
```