7 lines
140 B
Go
7 lines
140 B
Go
package authentication
|
|
|
|
type UserRepository interface {
|
|
GetUserId(email string) (int, error)
|
|
CreateFromEmail(email string) (int, error)
|
|
}
|