Update readme.md

This commit is contained in:
Kevin Wan
2022-06-13 19:35:51 +08:00
committed by GitHub
parent c27e00b45c
commit 1694a92db0

View File

@@ -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