From 7a55f0aa1cb4725bf9c59db657433777562feccf Mon Sep 17 00:00:00 2001 From: Zane Dufour Date: Mon, 5 Dec 2022 11:52:36 -0500 Subject: [PATCH] Document `name` config field 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"