mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-24 03:29:05 +08:00
14 lines
182 B
Go
14 lines
182 B
Go
package payment
|
|
|
|
import "hotgo/internal/model"
|
|
|
|
var config *model.PayConfig
|
|
|
|
func SetConfig(c *model.PayConfig) {
|
|
config = c
|
|
}
|
|
|
|
func GetConfig() *model.PayConfig {
|
|
return config
|
|
}
|