diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-22 10:38:18 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-22 10:38:18 +0800 |
commit | fbe0411756e5a9b9d6dccb6b8472500924899b2e (patch) | |
tree | d12b99283357c2cc5c52167cd091ba1b9cd7be81 /config.go | |
parent | Add rudimentary IRC logic (diff) | |
download | forge-fbe0411756e5a9b9d6dccb6b8472500924899b2e.tar.gz forge-fbe0411756e5a9b9d6dccb6b8472500924899b2e.tar.zst forge-fbe0411756e5a9b9d6dccb6b8472500924899b2e.zip |
IRC sending queues
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -36,9 +36,13 @@ var config struct { Root string `scfg:"root"` } `scfg:"ssh"` IRC struct { - Net string `scfg:"net"` - Addr string `scfg:"addr"` - TLS bool `scfg:"tls"` + Net string `scfg:"net"` + Addr string `scfg:"addr"` + TLS bool `scfg:"tls"` + SendQ uint `scfg:"sendq"` + Nick string `scfg:"nick"` + User string `scfg:"user"` + Gecos string `scfg:"gecos"` } `scfg:"irc"` General struct { Title string `scfg:"title"` |