Update readme.md

master
Kevin Wan 2 years ago committed by GitHub
parent c27e00b45c
commit 1694a92db0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,7 +15,9 @@ type RestfulConf struct {
}
```
2. Write the yaml or json config file:
2. Write the yaml, toml or json config file:
- yaml example
```yaml
# most fields are optional or have default values
@ -25,6 +27,16 @@ LogMode: console
MaxBytes: ${MAX_BYTES}
```
- toml example
```toml
# most fields are optional or have default values
Port = 8_080
LogMode = "console"
# you can use env settings
MaxBytes = "${MAX_BYTES}"
```
3. Load the config from a file:
```go

Loading…
Cancel
Save