diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-07 22:54:38 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-07 22:54:38 +0000 |
commit | 14963269dc63bf038163a851e521d6815ab5f514 (patch) | |
tree | d85f0b5cfebe22924e0068ce1b47b65c79953331 /config | |
parent | af05fbea27df62c96b411a941cf5bb612f256e9d (diff) | |
download | communique-14963269dc63bf038163a851e521d6815ab5f514.tar.gz |
avatar support
Diffstat (limited to '')
-rw-r--r-- | config/config.go | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/config/config.go b/config/config.go index 3c6cdde..e92b725 100644 --- a/config/config.go +++ b/config/config.go @@ -9,9 +9,11 @@ type Config struct { } type Handler struct { - Name string - Exec string - Rpc string - DedupWindow time.Duration - Interval time.Duration + Name string + AvatarUrl string + AvatarContentType string + Exec string + Rpc string + DedupWindow time.Duration + Interval time.Duration } |