Ver código fonte

Update readme.md

Kevin Wan 2 anos atrás
pai
commit
1694a92db0
1 arquivos alterados com 13 adições e 1 exclusões
  1. 13 1
      core/conf/readme.md

+ 13 - 1
core/conf/readme.md

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