greatape/app/commands/authorize_interaction.go

11 wiersze
255 B
Go

package commands
import . "github.com/reiver/greatape/components/contracts"
func AuthorizeInteraction(x IDispatcher, uri string) (IAuthorizeInteractionResult, error) {
return x.NewAuthorizeInteractionResult(
uri, // uri
true, // success
), nil
}