9 lines
182 B
Go
9 lines
182 B
Go
|
package storage
|
||
|
|
||
|
type Storage interface {
|
||
|
AddUser(email, password string) error
|
||
|
ById(uuid string) (User, bool)
|
||
|
ByEmail(uuid string) (User, bool)
|
||
|
EmailExists(email string) bool
|
||
|
}
|