Add user repo and keycloak

This commit is contained in:
Achim Rohn
2025-07-27 19:12:46 +02:00
parent d6a229c95f
commit 258853857f
7 changed files with 589 additions and 8 deletions
+6
View File
@@ -0,0 +1,6 @@
package authentication
type UserRepository interface {
GetUserId(email string) (int, error)
Create(email string) (int, error)
}