1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-06 01:05:35 -05:00

implement remove user in vmess

This commit is contained in:
Darien Raymond
2018-02-09 11:32:12 +01:00
parent c1fc7c738a
commit 87ba7dd0d1
4 changed files with 181 additions and 70 deletions

View File

@@ -3,4 +3,5 @@ package protocol
type UserValidator interface {
Add(user *User) error
Get(timeHash []byte) (*User, Timestamp, bool)
Remove(email string) bool
}