appota/internal/logic/revoke.go
2025-09-09 09:27:43 +08:00

14 lines
302 B
Go

package logic
import (
"context"
"git.linkiio.cn/linkpay/protobuf"
"github.com/gogf/gf/v2/errors/gcode"
"github.com/gogf/gf/v2/errors/gerror"
)
func Revoke(ctx context.Context, req *protobuf.RefundReq) (res *protobuf.Refunds, err error) {
return nil, gerror.NewCode(gcode.CodeNotImplemented)
}