2 Star 0 Fork 0

BOBO/创想视频核心服务

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pay_new.go 684 Bytes
一键复制 编辑 原始数据 按行查看 历史
package pay
import (
"context"
"gitee.com/bobo-rs/innovideo-services/framework/model"
"gitee.com/bobo-rs/innovideo-services/framework/service"
)
type sPay struct {
}
func New() *sPay {
return &sPay{}
}
// Config 获取支付配置
func (p *sPay) Config(ctx context.Context) (*model.PayConfig, error) {
rawConfig, err := service.Config().GetGroupVar(ctx, `pay`)
if err != nil {
return nil, err
}
config := rawConfig.MapStrVar()
// 返回数据
return &model.PayConfig{
Currency: config[`pay_currency`].String(),
ReturnUrl: config[`pay_return_url`].String(),
CancelUrl: config[`pay_cancel_url`].String(),
NotifyUrl: config[`pay_notify_url`].String(),
}, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bobo-rs/innovideo-services.git
git@gitee.com:bobo-rs/innovideo-services.git
bobo-rs
innovideo-services
创想视频核心服务
v1.0.19

搜索帮助