v2ray-core/common/protocol/user_validator.go

8 lines
148 B
Go
Raw Normal View History

2016-02-25 15:40:43 +00:00
package protocol
type UserValidator interface {
Add(user *User) error
Get(timeHash []byte) (*User, Timestamp, bool)
2018-02-09 10:32:12 +00:00
Remove(email string) bool
2016-02-25 15:40:43 +00:00
}