16 lines
225 B
Go
16 lines
225 B
Go
package paypal
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/aerogo/aero"
|
|
)
|
|
|
|
// Cancel ...
|
|
func Cancel(ctx *aero.Context) string {
|
|
token := ctx.Query("token")
|
|
fmt.Println("cancel", token)
|
|
|
|
return ctx.HTML("Payment has been canceled.")
|
|
}
|