mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-25 03:58:37 +08:00
14 lines
190 B
Go
14 lines
190 B
Go
package wechat
|
|
|
|
import "hotgo/internal/model"
|
|
|
|
var config *model.WechatConfig
|
|
|
|
func SetConfig(c *model.WechatConfig) {
|
|
config = c
|
|
}
|
|
|
|
func GetConfig() *model.WechatConfig {
|
|
return config
|
|
}
|