models.go raw

   1  package controllers
   2  
   3  import (
   4  	"github.com/getAlby/go-nostr"
   5  	"github.com/getAlby/hub/nip47/models"
   6  )
   7  
   8  type publishFunc = func(*models.Response, nostr.Tags)
   9  
  10  type payResponse struct {
  11  	Preimage string `json:"preimage"`
  12  	FeesPaid uint64 `json:"fees_paid"`
  13  }
  14