go-mstdn/ent/errors.go

11 lines
177 B
Go
Raw Normal View History

2023-09-26 05:29:10 +00:00
package ent
2023-09-26 03:59:30 +00:00
import (
"github.com/reiver/go-erorr"
2023-09-26 03:59:30 +00:00
)
const (
2023-09-27 21:13:25 +00:00
errNilReceiver = erorr.Error("mstdn/ent: nil receiver")
2024-08-07 20:06:16 +00:00
errNothingID = erorr.Error("mstdn/ent: nothing id")
2023-09-26 03:59:30 +00:00
)