mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-26 09:42:04 +01:00
13 lines
172 B
Go
13 lines
172 B
Go
package relaypool
|
|
|
|
const (
|
|
PublishStatusSent = 0
|
|
PublishStatusFailed = -1
|
|
PublishStatusSucceeded = 1
|
|
)
|
|
|
|
type PublishStatus struct {
|
|
Relay string
|
|
Status int
|
|
}
|