mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-26 12:48:41 +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
|
||
|
}
|