1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 08:16:00 -04:00
v2fly/common/protocol/user_validator.go

8 lines
148 B
Go
Raw Normal View History

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