mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-04-17 20:27:28 +08:00
10 lines
153 B
Go
10 lines
153 B
Go
package channels
|
|
|
|
import "sort"
|
|
|
|
func CompiledChannelKeys() []string {
|
|
out := []string{"weixin", "telegram", "feishu"}
|
|
sort.Strings(out)
|
|
return out
|
|
}
|