feat: add multi-account weixin channel

This commit is contained in:
lpf
2026-03-23 18:04:13 +08:00
parent 88fccb21ee
commit 8e2bf3c492
10 changed files with 1548 additions and 1 deletions

View File

@@ -3,7 +3,10 @@ package channels
import "sort"
func CompiledChannelKeys() []string {
out := make([]string, 0, 7)
out := make([]string, 0, 8)
if weixinCompiled {
out = append(out, "weixin")
}
if telegramCompiled {
out = append(out, "telegram")
}