From 7b1b5f7eba3ea98a5d254a12ea31f383ee7737d1 Mon Sep 17 00:00:00 2001 From: Zane Dufour Date: Wed, 25 Jan 2023 00:06:59 -0500 Subject: [PATCH] Document `name` config field (#165) hi, thought it would be worth using `name` in a couple of the example config fields This would require a new release though, since the [latest release](https://github.com/TaKO8Ki/gobang/tree/v0.1.0-alpha.5) predates #105 Thanks for the cool project :) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8151510..3debafe 100644 --- a/README.md +++ b/README.md @@ -144,6 +144,7 @@ host = "localhost" port = 3306 password = "password" database = "foo" +name = "mysql Foo DB" [[conn]] type = "postgres" @@ -151,6 +152,7 @@ user = "root" host = "localhost" port = 5432 database = "bar" +name = "postgres Bar DB" [[conn]] type = "sqlite"