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