2024-08-07 15:05:46 +00:00
|
|
|
package local
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/reiver/go-erorr"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
errNilDestination = erorr.Error("mstdn: nil destination")
|
2024-08-07 17:47:47 +00:00
|
|
|
errNilHTTPRequest = erorr.Error("mstdn: nil http-request")
|
2024-08-07 15:05:46 +00:00
|
|
|
errNilHTTPSSEClient = erorr.Error("mstdn: nil http-sse-client")
|
|
|
|
errNilReceiver = erorr.Error("mstdn: nil receiver")
|
|
|
|
)
|