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

7 lines
121 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)
}