Draft: feat login

This commit is contained in:
2025-09-05 03:59:25 +08:00
parent 6d7074198f
commit bce698a4ed
20 changed files with 593 additions and 83 deletions

7
types/errors.go Normal file
View File

@@ -0,0 +1,7 @@
package types
import "errors"
var (
UsernameConflictError = errors.New("username conflict")
)