Files
2026-07-18 05:58:41 +08:00

10 lines
190 B
Go

package payment
// ControllerV1 是支付回调控制器。
type ControllerV1 struct{}
// NewV1 创建支付回调控制器实例。
func NewV1() *ControllerV1 {
return &ControllerV1{}
}