pye/storage/storage.go

9 lines
182 B
Go
Raw Normal View History

2024-10-12 20:41:30 +03:00
package storage
type Storage interface {
AddUser(email, password string) error
ById(uuid string) (User, bool)
ByEmail(uuid string) (User, bool)
EmailExists(email string) bool
}