init service

This commit is contained in:
juancwu 2026-05-04 20:52:35 +00:00
commit 336bd34bd3
3 changed files with 141 additions and 0 deletions

7
store/errors.go Normal file
View file

@ -0,0 +1,7 @@
package store
import "errors"
var (
ErrUserEmailConflict = errors.New("pase.store: user email conflict")
)