summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2020-06-21 14:21:23 +0000
committerHubert Hirtz <hubert@hirtzfr.eu>2020-06-21 17:02:18 +0200
commit81c860a061ac6bc239fd9cfd6f5cf7299584f088 (patch)
tree2e2b6544fcb4a74361e19fc9002149f5bf8c2e7a /config.go
parentUse os.UserConfigDir (diff)
Use nick/realname from config
Use the nick/realname config options advertised by the README.
Diffstat (limited to 'config.go')
-rw-r--r--config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.go b/config.go
index 8736f1d..0634dfc 100644
--- a/config.go
+++ b/config.go
@@ -7,6 +7,8 @@ import (
type Config struct {
Addr string
+ Nick string
+ Real string
User string
Password string
}