feat: initial sqlite store

This commit is contained in:
juancwu 2026-05-06 00:16:39 +00:00
commit 9918c9918f
10 changed files with 560 additions and 6 deletions

View file

@ -3,5 +3,8 @@ package store
import "errors"
var (
ErrUserEmailConflict = errors.New("pase.store: user email conflict")
ErrUserEmailConflict = errors.New("pase: user email conflict")
ErrEmailAlreadyExists = errors.New("pase: email already exists")
ErrUsernameAlreadyExists = errors.New("pase: username already exists")
ErrUserNotFound = errors.New("pase: user not found")
)