From c0ede4bd76eb1bb283290162b11b01fd12585bee Mon Sep 17 00:00:00 2001 From: Milad Rahimi Date: Tue, 5 Oct 2021 22:39:52 +0330 Subject: [PATCH] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index a671532..803ce9f 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,9 @@ DEBUG=true APP_NAME=MyApp APP_PORT=8585 +IPS=192.168.0.1,192.168.0.2 +IDS=10,11,12,13,14 + DB_NAME=shop DB_PORT=3306 DB_USER=root @@ -48,6 +51,8 @@ type Config struct { User string `env:"DB_USER"` Pass string `env:"DB_PASS"` } + IPs []string `env:"IPS"` + IDs []int64 `env:"IDS"` } config := Config{}