Files
clawgo/pkg/channels/compiled_channels.go
2026-04-03 18:35:04 +08:00

10 lines
153 B
Go

package channels
import "sort"
func CompiledChannelKeys() []string {
out := []string{"weixin", "telegram", "feishu"}
sort.Strings(out)
return out
}