Add create from email

This commit is contained in:
Achim Rohn
2025-07-27 19:15:16 +02:00
parent 258853857f
commit 868a167660
4 changed files with 15 additions and 9 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ package authentication
type UserRepository interface {
GetUserId(email string) (int, error)
Create(email string) (int, error)
CreateFromEmail(email string) (int, error)
}