diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-08 14:07:29 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-08 14:07:29 +0800 |
commit | 25672d25660066cfcd7965d495a412c7c8199817 (patch) | |
tree | db82a022fa11e0635a284659646495d4e2cdac72 /cap.go | |
parent | CAP: Primitive negotiation (diff) | |
download | meseircd-25672d25660066cfcd7965d495a412c7c8199817.tar.gz meseircd-25672d25660066cfcd7965d495a412c7c8199817.tar.zst meseircd-25672d25660066cfcd7965d495a412c7c8199817.zip |
Caps should be defined in separate files
Diffstat (limited to 'cap.go')
-rw-r--r-- | cap.go | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -4,9 +4,7 @@ import ( "strings" ) -var Caps = map[string]string{ - "sasl": "PLAIN,EXTERNAL", -} +var Caps = map[string]string{} var capls string |