mirror of
https://github.com/getAlby/hub.git
synced 2026-08-13 12:33:39 +02:00
13 lines
257 B
Go
13 lines
257 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/getAlby/go-nostr"
|
|
"github.com/getAlby/hub/nip47/models"
|
|
)
|
|
|
|
type publishFunc = func(*models.Response, nostr.Tags)
|
|
|
|
type payResponse struct {
|
|
Preimage string `json:"preimage"`
|
|
FeesPaid uint64 `json:"fees_paid"`
|
|
}
|