notify.moe/pages/paypal/cancel.go
2017-07-16 20:29:10 +02:00

16 lines
205 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("cancel")
}