22 lines
333 B
Go
Raw Normal View History

2023-07-26 11:06:05 +08:00
package config
import (
"fusenapi/server/pay/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
2023-07-26 19:23:16 +08:00
PayConfig struct {
2023-07-26 11:06:05 +08:00
Stripe struct {
2023-07-28 11:15:42 +08:00
EndpointSecret string
Key string
CancelURL string
SuccessURL string
2023-07-26 11:06:05 +08:00
}
}
}