12 lines
251 B
Go
12 lines
251 B
Go
|
package local
|
||
|
|
||
|
import (
|
||
|
"github.com/reiver/go-erorr"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
errNilDestination = erorr.Error("mstdn: nil destination")
|
||
|
errNilHTTPSSEClient = erorr.Error("mstdn: nil http-sse-client")
|
||
|
errNilReceiver = erorr.Error("mstdn: nil receiver")
|
||
|
)
|