1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 20:45:23 +00:00
v2fly/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
}