This commit is contained in:
sam 2023-09-03 00:23:48 +02:00
commit 2586161abd
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
49 changed files with 4171 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package sql
import "emperror.dev/errors"
const (
ErrRemoteBlog = errors.Sentinel("blog is remote")
ErrUsernameTaken = errors.Sentinel("username or blog name is taken")
ErrNotFound = errors.Sentinel("not found")
)