Files
ersteller/authentication/user.go
T
2025-07-27 19:12:46 +02:00

7 lines
131 B
Go

package authentication
type UserRepository interface {
GetUserId(email string) (int, error)
Create(email string) (int, error)
}