4563979a15
- 迁移 000035-000037(权限等级/环境变量/渠道) - 新增 internal/channel 渠道抽象层(webhook/企微/钉钉/飞书) - 全部功能端到端验证通过(25 包单测)
8 lines
121 B
Go
8 lines
121 B
Go
package channel
|
|
|
|
import "regexp"
|
|
|
|
func regexpMust(pattern string) *regexp.Regexp {
|
|
return regexp.MustCompile(pattern)
|
|
}
|